-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 780 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 780 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": "population-management",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:ludralph/population-management.git",
"author": "ludralph <raphaelumoh@gmail.com>",
"license": "MIT",
"engines": {
"node": "10.15.0"
},
"scripts": {
"start": "node app.js",
"test": "sequelize db:migrate --env test && jest --detectOpenHandles --coverage"
},
"dependencies": {
"body-parser": "^1.18.3",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"jsonschema": "^1.2.4",
"logger": "^0.0.1",
"pg": "^7.8.0",
"pg-hstore": "^2.3.2",
"sequelize": "^4.42.0",
"sequelize-cli": "^5.4.0",
"supertest": "^3.4.1"
},
"devDependencies": {
"jest": "^23.6.0"
},
"jest": {
"testEnvironment": "node"
}
}