-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 979 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 979 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
34
35
36
{
"name": "sequelize-with-postgres",
"version": "1.0.0",
"main": "index.js",
"author": "orie chinedu",
"license": "MIT",
"scripts": {
"start-dev": "nodemon index.js",
"migrate": "npx sequelize-cli db:migrate",
"test": "cross-env NODE_ENV=test jest --testTimeout=10000",
"migrate:reset": "npx sequelize-cli db:migrate:undo:all && npm run migrate",
"pretest": "cross-env NODE_ENV=test npm run migrate:reset",
"coverage": "npm run pretest && jest --coverage && cat ./coverage/lcov.info | coveralls"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"verbose": true
},
"dependencies": {
"dotenv": "^8.0.0",
"express": "^4.17.1",
"pg": "^7.12.0",
"pg-hstore": "^2.3.3",
"sequelize": "^5.12.3"
},
"devDependencies": {
"coveralls": "^3.0.6",
"cross-env": "^5.2.0",
"jest": "^24.9.0",
"nodemon": "^1.19.1",
"supertest": "^4.0.2"
}
}