-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.61 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
{
"name": "friday",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon -L server.js --watch server",
"start": "node server",
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "npm run development -- --watch",
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"prod": "npm run production",
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
},
"dependencies": {
"axios": "^0.19.0",
"bcrypt": "^3.0.7",
"body-parser": "^1.19.0",
"commander": "^4.1.0",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"cron": "^1.7.2",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"ejs": "^2.7.4",
"express": "~4.16.1",
"jsonwebtoken": "^8.5.1",
"marked": "^0.8.2",
"md5": "^2.2.1",
"module-alias": "^2.2.2",
"moment": "^2.24.0",
"mongoose": "^5.8.3",
"morgan": "~1.9.1",
"socket.io": "^2.3.0"
},
"devDependencies": {
"bootstrap": "^4.4.1",
"cross-env": "^6.0.3",
"feather-icons": "^4.25.0",
"jquery": "^3.4.1",
"laravel-mix": "^5.0.1",
"nodemon": "^2.0.2",
"popper.js": "^1.16.0",
"resolve-url-loader": "^3.1.1",
"sass": "^1.24.0",
"sass-loader": "^8.0.0"
},
"_moduleAliases": {
"@": "./"
}
}