-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.02 KB
/
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
33
34
35
36
37
38
39
{
"name": "thingful-server",
"version": "0.0.1",
"description": "Starter code for learning about authentication.",
"private": true,
"main": "src/server.js",
"scripts": {
"test": "mocha --require test/setup.js",
"dev": "nodemon src/server.js",
"migrate": "postgrator --config postgrator-config.js",
"migrate:test": "env NODE_ENV=test npm run migrate",
"start": "node src/server.js",
"predeploy": "npm audit",
"deploy": "git push heroku master"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"helmet": "^3.15.0",
"knex": "^0.20.13",
"morgan": "^1.10.0",
"pg": "^7.8.0",
"treeize": "^2.1.2",
"xss": "^1.0.3"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^7.1.1",
"nodemon": "^2.0.3",
"postgrator-cli": "^3.2.0",
"supertest": "^3.3.0"
},
"contributors": [
"Thomas `tomatao` Hudspith-Tatham <[email protected]>",
"Joshua Reade Harris <[email protected]>"
],
"license": "MIT"
}