-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.17 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": "humanity-in-business",
"version": "1.0.0",
"description": "RHok Sydney",
"main": "index.js",
"directories": {
"test": "test"
},
"dependencies": {
"dotenv": "^8.0.0",
"md5": "^2.2.1",
"mysql": "^2.17.1",
"pg": "^7.11.0",
"restify": "^8.3.3",
"swagger": "^0.7.5"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^6.2.0",
"nodemon": "^1.19.1",
"sinon": "^9.0.1",
"supertest": "^4.0.2"
},
"scripts": {
"start": "node_modules/nodemon/bin/nodemon.js src/index.js",
"dev": "POSTGRES_SSL_MODE_REQUIRED=false node_modules/nodemon/bin/nodemon.js src/index.js",
"test": "mocha ./test/**/*.test.js --exit",
"e2e": "POSTGRES_SSL_MODE_REQUIRED=false mocha ./test/e2e/*.spec.js --exit",
"test-db": "./test/e2e/launchTestDb.sh",
"e2e-with-db": "npm run test-db && npm run e2e"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RHoKAustralia/humanity-in-business.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/RHoKAustralia/humanity-in-business/issues"
},
"homepage": "https://github.com/RHoKAustralia/humanity-in-business#readme"
}