-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 975 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": "task-manager",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "node src/index.js",
"dev": "concurrently \"npm run devBackend\" \"cd client && npm run serve\"",
"devBackend": "env-cmd -f ./config/dev.env nodemon src/index.js",
"devFrontend": "cd client && npm run serve",
"test": "env-cmd -f ./config/test.env jest --watch --runInBand",
"heroku-postbuild": "cd client && npm install && npm run build"
},
"jest": {
"testEnvironment": "node"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.5.8",
"mongoose": "^5.9.18",
"validator": "^13.0.0"
},
"devDependencies": {
"concurrently": "^5.3.0",
"env-cmd": "^10.1.0",
"jest": "^26.1.0",
"nodemon": "^2.0.4",
"supertest": "^4.0.2"
},
"description": ""
}