-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.95 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
67
68
69
70
71
72
73
74
{
"name": "bus",
"version": "1.0.0",
"private": true,
"description": "Track buses in Auckland and more.",
"author": {
"name": "Roc Wang",
"email": "[email protected]",
"url": "https://kiwiberry.nz/"
},
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"test:unit": "vue-cli-service test:unit",
"test:e2e": "vue-cli-service test:e2e",
"lint": "vue-cli-service lint"
},
"dependencies": {
"@mapbox/polyline": "^1.1.1",
"@turf/turf": "^5.1.6",
"core-js": "^3.6.5",
"date-fns": "^2.15.0",
"idb-keyval": "^3.2.0",
"lodash-es": "^4.17.15",
"mapbox-gl": "^1.12.0",
"pwacompat": "^2.0.16",
"ramda": "^0.27.1",
"rxjs": "^6.6.2",
"sql.js": "^1.3.0",
"vue": "^2.6.12",
"vue-router": "^3.4.3",
"vue-rx": "^6.2.0",
"vuex": "^3.5.1",
"workbox-window": "^5.1.3"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.5.4",
"@vue/cli-plugin-e2e-cypress": "^4.5.4",
"@vue/cli-plugin-eslint": "^4.5.4",
"@vue/cli-plugin-router": "^4.5.4",
"@vue/cli-plugin-unit-jest": "^4.5.4",
"@vue/cli-plugin-vuex": "^4.5.4",
"@vue/cli-service": "^4.5.4",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/test-utils": "^1.0.4",
"babel-eslint": "^10.1.0",
"better-sqlite3": "^7.1.0",
"comlink-loader": "^2.0.0",
"csv": "^5.3.2",
"eslint": "^7.7.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-vue": "^6.2.2",
"fake-indexeddb": "^3.1.2",
"fetch-mock": "^9.10.7",
"lighthouse": "^6.2.0",
"lint-staged": "^10.2.11",
"lodash": "^4.17.20",
"netlify-cli": "^2.59.1",
"node-fetch": "^2.6.0",
"prettier": "^2.0.5",
"vue-template-compiler": "^2.6.12",
"webapp-webpack-plugin": "^2.7.1",
"workbox-webpack-plugin": "^5.1.3"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,vue}": [
"vue-cli-service lint",
"git add"
]
}
}