-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 771 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 771 Bytes
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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"migrate": "npx sequelize-cli db:migrate",
"start": "node --trace-warnings index.js",
"test": "cross-env NODE_ENV=test&& jest --detectOpenHandles",
"testdev": "SET NODE_ENV=test&& jest --detectOpenHandles"
},
"jest": {
"testEnvironment": "node",
"setupFiles": []
},
"author": "",
"license": "ISC",
"devDependencies": {
"cross-env": "^7.0.3",
"sequelize-cli": "^6.2.0",
"supertest": "^6.1.3"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jest": "^26.6.3",
"jsonwebtoken": "^8.5.1",
"pg": "^8.5.1",
"sequelize": "^6.6.2",
"uniqid": "^5.3.0"
}
}