-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 971 Bytes
/
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
{
"name": "auth-client-server-server",
"version": "1.0.0",
"main": "server/index.js",
"engines": {
"node": "10.0.0",
"npm": "6.0.0"
},
"scripts": {
"start": "node server",
"server": "nodemon server",
"client": "npm run start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"cacheDirectories": [
"node_modules",
"client/node_modules"
],
"author": "",
"license": "ISC",
"dependencies": {
"concurrently": "^3.5.1",
"express": "^4.16.3",
"mongoose": "^5.1.0",
"passport": "^0.4.0",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.15.0",
"cors": "^2.7.1",
"jwt-simple": "^0.5.0",
"morgan": "^1.7.0",
"nodemon": "^1.9.1",
"passport-jwt": "^2.0.0",
"passport-local": "^1.0.0"
},
"devDependencies": {},
"description": ""
}