-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.4 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": "mevn-boilerplate",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"client:build": "cd client && yarn install && yarn build",
"dev-server": "NODE_ENV=development nodemon --inspect ./bin/www",
"client": "concurrently --kill-others-on-fail 'cd client && yarn serve'",
"dev-start": "concurrently --kill-others-on-fail \"yarn dev-server\" \"yarn client\""
},
"dependencies": {
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.3",
"@doweb/vuexpress": "^1.1.3",
"autoprefixer": "^9.8.5",
"babel-core": "^6.26.3",
"babel-loader": "^8.1.0",
"concurrently": "^5.2.0",
"config": "^3.3.1",
"connect-history-api-fallback": "^1.6.0",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"express": "~4.16.1",
"express-enforces-ssl": "^1.1.0",
"express-jwt": "^6.0.0",
"express-session": "^1.17.1",
"helmet": "^3.23.3",
"http-errors": "~1.6.3",
"jade": "~1.11.0",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.2",
"mongodb": "^3.5.9",
"mongoose": "^5.9.20",
"mongoose-unique-validator": "^2.0.3",
"morgan": "~1.9.1",
"passport": "^0.4.1",
"passport-auth0": "^1.3.3",
"passport-local": "^1.0.0",
"serve-static": "^1.14.1"
},
"devDependencies": {
"nodemon": "^2.0.4"
},
"_moduleAliases": {
"@": "."
}
}