-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
37 lines (37 loc) · 920 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
{
"name": "app-1",
"version": "1.0.0",
"description": "MEAN APP",
"main": "server.js",
"scripts": {
"client-install": "npm install --prefix client",
"client": "npm start --prefix client",
"start": "node ./bin/server.js",
"server": "babel-watch ./bin/server.js",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"keywords": [
"mr.rooney"
],
"author": "mr.rooney",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-watch": "^2.0.7"
},
"dependencies": {
"@types/passport-jwt": "^3.0.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"concurrently": "^4.1.0",
"cookie-parser": "^1.4.3",
"cors": "^2.8.5",
"express": "^4.16.4",
"jsonwebtoken": "^8.4.0",
"mongoose": "^5.4.2",
"morgan": "^1.9.1",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0"
}
}