-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.33 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
63
64
65
66
{
"name": "can-we-row",
"version": "0.5.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "node index.js",
"update-stations": "node update-stations.js",
"test": "xo && ava --verbose"
},
"repository": {
"type": "git",
"url": "https://github.com/mycaule/can-we-row.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mycaule/can-we-row/issues"
},
"homepage": "https://github.com/mycaule/can-we-row",
"dependencies": {
"axios": "^0.18.0",
"express": "^5.0.0-alpha.6",
"helmet": "^3.9.0",
"is": "^3.2.1",
"is-url": "^1.2.2",
"lowdb": "^1.0.0",
"prom-client": "^11.0.0",
"superstruct": "^0.5.0"
},
"devDependencies": {
"ava": "^0.25.0",
"babel-cli": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"echarts": "^4.0.4",
"moment": "^2.20.1",
"parcel-bundler": "^1.2.1",
"patriarchy": "^1.0.8",
"voca": "^1.3.1",
"xo": "^0.20.3"
},
"xo": {
"space": true,
"semicolon": false,
"ignore": [
"**/dist/**"
],
"envs": [
"node",
"browser"
]
},
"ava": {
"snapshotDir": "snapshots"
},
"nodemonConfig": {
"ignore": [
"*.test.js",
"db.json",
"stations.json",
"cities.json"
],
"delay": "2500"
}
}