-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.04 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
{
"name": "invictus",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "cd client && npm run build",
"install-client": "cd client && npm install",
"heroku-postbuild": "npm run install-client && npm run build",
"start": "node app.js",
"client": "cd client && npm start",
"nodemon": "nodemon app.js",
"dev": "concurrently \"nodemon app.js\" \"npm run client\"",
"iall": "npm install && cd client && npm install"
},
"author": "O",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"concurrently": "^5.3.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.6.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.20",
"multer": "^1.4.2"
},
"devDependencies": {
"@testing-library/cypress": "^7.0.2",
"cypress": "^6.1.0",
"jest-fetch-mock": "^3.0.3",
"msw": "^0.21.3",
"nodemon": "^2.0.4"
}
}