-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.27 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.27 KB
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
{
"name": "tretraffic-backend",
"version": "1.0.0",
"description": "Tampere bus traffic backend proxy server",
"main": "app.js",
"engines": {
"node": ">= 8.11.1"
},
"scripts": {
"test": "npm run test",
"server:dev": "NODE_ENV=development node server/server.js",
"server:prod": "NODE_ENV=production node server/server.js",
"server:watch": "nodemon server/server.js",
"lint:fix": "eslint server/**/*.js --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ottoo/TreTrafficBackend.git"
},
"keywords": [
"hapijs",
"node",
"nodejs"
],
"author": "Otto Kivikarki",
"license": "MIT",
"bugs": {
"url": "https://github.com/ottoo/TreTrafficBackend/issues"
},
"devDependencies": {
"eslint": "5.5.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-config-prettier": "3.0.1",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-node": "7.0.1",
"eslint-plugin-prettier": "2.6.2",
"prettier": "1.14.2"
},
"homepage": "https://github.com/ottoo/TreTrafficBackend#readme",
"dependencies": {
"good": "8.1.1",
"good-console": "7.1.0",
"good-squeeze": "5.1.0",
"h2o2": "8.1.2",
"hapi": "17.5.4",
"inert": "5.1.0",
"lodash": "4.17.10",
"wreck": "14.1.0"
}
}