-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.24 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
{
"name": "new-owt",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"production-build": "npm i && cd client && npm i && npm run build && cd ../",
"test": "echo \"Error: no test specified\" && exit 1",
"init": "npm i && cd client && npm i && npm run build && cd ../ && npm run dev",
"start": "cd client && npm i && npm run build && cd ../ && npm run server",
"azure": "npm run start",
"client-install": "npm install --prefix client",
"server": "node server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"author": "",
"license": "ISC",
"dependencies": {
"concurrently": "^5.3.0",
"cookie-parser": "^1.4.4",
"express": "^4.17.1",
"http-errors": "^1.7.3",
"mongodb": "^3.4.1",
"morgan": "^1.9.1",
"path": "^0.12.7",
"pug": "^2.0.4",
"react-share": "^3.0.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"bulma-extensions": "^6.2.7",
"dotenv": "^8.2.0",
"is-empty": "^1.2.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.10.14",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"validator": "^13.1.17"
},
"devDependencies": {
"colors": "^1.4.0"
}
}