-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1015 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 1015 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
37
38
39
40
41
{
"name": "wind-chime-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha --require test/setup.js",
"dev": "nodemon src/server.js",
"migrate": "postgrator --config postgrator-config.js",
"start": "node src/server.js",
"predeploy": "yarn audit && npm run migrate-production",
"deploy": "git push heroku master",
"migrate-production": "postgrator --config postgrator-production-config.js"
},
"keywords": [],
"engines": {
"node": "12.0.0"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.22.0",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"helmet": "^3.18.0",
"knex": "^0.18.2",
"morgan": "^1.9.1",
"pg": "^7.11.0",
"postgrator": "^3.10.2",
"treeize": "^2.1.2",
"xss": "^1.0.6"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^6.1.4",
"nodemon": "^1.19.1",
"postgrator-cli": "^3.1.0",
"supertest": "^4.0.2"
}
}