-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 672 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 672 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
{
"name": "study-staturday-week-1",
"version": "1.0.0",
"description": "fun w express and sequelize!",
"main": "index.js",
"scripts": {
"test": "nodemon --exec 'mocha --reporter spec --timeout 1000 test/*.test.js || true'",
"start": "nodemon app.js"
},
"author": "myself",
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.2",
"express": "^4.16.2",
"morgan": "^1.9.0",
"nodemon": "^1.17.1",
"pg": "^7.4.1",
"pg-hstore": "^2.3.2",
"sequelize": "^4.32.2"
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^5.0.0",
"sinon": "^4.2.2",
"sinon-chai": "^2.14.0",
"supertest": "^3.0.0"
}
}