-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 892 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
{
"name": "TDD-Jest",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/Arthurdb1999/TDD-Jest.git",
"author": "arthurdb1999 <[email protected]>",
"license": "MIT",
"scripts": {
"start": "node src/server.js",
"dev": "nodemon src/server.js --ignore __tests__",
"pretest": "SET NODE_ENV=test & sequelize db:migrate",
"test": "SET NODE_ENV=test & jest --detectOpenHandles",
"posttest": "SET NODE_ENV=test & sequelize db:migrate:undo:all"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"factory-girl": "^5.0.4",
"faker": "^4.1.0",
"jsonwebtoken": "^8.5.1",
"nodemon": "^2.0.4",
"pg": "^8.2.0",
"sequelize": "^5.21.9"
},
"devDependencies": {
"jest": "^26.0.1",
"sequelize-cli": "^5.5.1",
"sqlite3": "^4.2.0",
"supertest": "^4.0.2"
}
}