-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1012 Bytes
/
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": "client-service",
"version": "1.0.0",
"description": "CRUD service for a client in Smart Hotel Rate",
"main": "server.js",
"scripts": {
"start": "sh ./scripts/start.sh",
"test": "./node_modules/mocha/bin/_mocha 'tests/*.test.js'",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/ConsenSys/SHR-client-service.git"
},
"author": "Henrik Conradsen",
"license": "ISC",
"bugs": {
"url": "https://github.com/ConsenSys/SHR-client-service/issues"
},
"homepage": "https://github.com/ConsenSys/SHR-client-service#readme",
"dependencies": {
"body-parser": "^1.18.3",
"chai-http": "^4.2.0",
"cors": "^2.8.5",
"dotenv": "^6.1.0",
"express": "^4.16.3",
"knex": "^0.15.2",
"objection": "^1.4.0",
"pg": "^7.4.3"
},
"devDependencies": {
"chai": "^3.5.0",
"cheerio": "^0.22.0",
"eslint": "^5.4.0",
"mocha": "^5.2.0",
"request": "^2.81.0",
"request-promise": "^4.2.0"
}
}