This repository has been archived by the owner on Jan 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
62 lines (62 loc) · 1.66 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "nitro-server",
"version": "3.0.0",
"description": "The Nitro Sync Server",
"main": "app.js",
"scripts": {
"start": "node app.js",
"start-production": "if npm run check-postgres; then npm run start; fi",
"check-postgres": "./wait-for-it.sh -h $DATABASE_HOST -p $DATABASE_PORT",
"test": "nyc mocha --require test/mocha.env.js --exit",
"sequelize": "sequelize",
"migrate": "sequelize db:migrate",
"migrate:test": "cross-env NODE_ENV=test sequelize db:migrate:undo:all && cross-env NODE_ENV=test sequelize db:migrate && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nitrotasks/nitro-server.git"
},
"author": "Jono Cooper <jono@jono.nz>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/nitrotasks/nitro-server/issues"
},
"engines": {
"node": "8.4.x"
},
"nyc": {
"reporter": [
"lcov",
"text",
"html"
]
},
"homepage": "http://nitrotasks.com",
"dependencies": {
"bcrypt": "^3.0.2",
"body-parser": "^1.18.3",
"bufferutil": "^3.0.5",
"bunyan": "^1.8.12",
"compression": "^1.7.3",
"cross-env": "^5.2.0",
"express": "^4.16.3",
"jsonwebtoken": "^7.4.3",
"jwks-rsa": "^1.3.0",
"passport": "^0.4.0",
"passport-bearer-strategy": "^1.0.1",
"passport-http-bearer": "^1.0.1",
"pg": "^7.4.3",
"pg-hstore": "^2.3.2",
"sequelize": "^4.41.2",
"sequelize-cli": "^5.4.0",
"utf-8-validate": "^4.0.2",
"ws": "^3.3.3"
},
"devDependencies": {
"mocha": "^4.1.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^11.9.0",
"prettier": "^1.15.3",
"supertest": "^3.1.0"
}
}