-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1 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
40
41
42
{
"name": "spenduful-server",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"test": "mocha --recursive --require test/setup.js",
"test:watch": "npx nodemon --exec npm test",
"start": "node src/server.js",
"dev": "nodemon src/server.js",
"debug": "ndb node app",
"predeploy": "npm audit",
"deploy": "git push heroku master",
"migrate": "postgrator --config postgrator-config.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@hapi/joi": "^14.3.1",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"helmet": "^3.15.1",
"jsonwebtoken": "^8.5.1",
"knex": "^0.16.5",
"luxon": "^1.12.1",
"morgan": "^1.9.1",
"pg": "^7.10.0",
"postgrator-cli": "^3.1.0",
"rrule": "^2.6.0",
"xss": "^1.0.6"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^6.1.4",
"ndb": "^1.0.43",
"nodemon": "^1.18.10",
"supertest": "^3.4.2"
}
}