-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.62 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "taskapps",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node ./src/index.js",
"example": "cross-env KEY_ENV=value node ./src/index.js",
"dev": "concurrently \"npm run webpack:watch\" \"nodemon ./src/index.js\"",
"webpack:watch": "npx webpack --mode=development --watch",
"webpack:dev": "npx webpack --mode=development",
"build": "npx webpack --mode=production"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.12.10",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@tailwindcss/custom-forms": "^0.2.1",
"autoprefixer": "^10.1.0",
"axios": "^0.21.1",
"babel-loader": "^8.2.2",
"bcryptjs": "^2.4.3",
"concurrently": "^5.3.0",
"connect-flash": "^0.1.1",
"cookie-session": "^2.0.0",
"css-loader": "^5.0.1",
"dotenv": "^16.0.1",
"express": "^4.17.1",
"express-session": "^1.17.1",
"html-to-text": "^6.0.0",
"juice": "^7.0.0",
"method-override": "^3.0.0",
"mini-css-extract-plugin": "^1.3.3",
"moment": "^2.29.1",
"mysql2": "^2.2.5",
"nodemailer": "^6.4.17",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"postcss": "^8.2.1",
"postcss-loader": "^4.1.0",
"pug": "^3.0.0",
"sequelize": "^6.3.5",
"shortid": "^2.2.16",
"slug": "^4.0.2",
"style-loader": "^2.0.0",
"tailwindcss": "^1.9.6",
"underscore": "^1.12.0",
"uniqid": "^5.2.0",
"validatorjs": "^3.22.1",
"webpack": "5.11.0",
"webpack-cli": "4.3.0"
},
"devDependencies": {
"cross-env": "^7.0.3"
}
}