-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.47 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
{
"name": "onlinecv",
"version": "1.0.0",
"description": "online cv",
"main": "server.js",
"scripts": {
"start": "node server.js",
"devserver": "./node_modules/nodemon/bin/nodemon.js run server.js",
"client": "npm start --prefix client",
"admin": "PORT=3001 npm start --prefix admin",
"dev": "concurrently \"npm run devserver\" \"npm run client\" \"npm run admin\"",
"build": "npm build --prefix client && npm build --prefix admin",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm install --prefix admin && npm run build --prefix client && npm run build --prefix admin"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hoekap/OnlineCV.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/hoekap/OnlineCV/issues"
},
"homepage": "https://github.com/hoekap/OnlineCV#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"cloudinary": "^1.13.2",
"compression": "^1.7.3",
"concurrently": "^4.1.0",
"cookie-parser": "^1.4.3",
"csurf": "^1.9.0",
"express": "^4.16.4",
"generate-password": "^1.4.1",
"helmet": "^3.15.0",
"is-empty": "^1.2.0",
"jsonwebtoken": "^8.4.0",
"mongoose": "^5.3.16",
"multer": "^1.4.1",
"multer-storage-cloudinary": "^2.2.1",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"validator": "^10.9.0"
},
"devDependencies": {
"nodemon": "^1.18.8"
}
}