-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
47 lines (47 loc) · 1.13 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
{
"name": "aptmap",
"version": "0.1.9",
"private": true,
"scripts": {
"serve": "git submodule update --force --init && ./update-actors.py && vue-cli-service serve",
"build": "git submodule update --force --init && ./update-actors.py && vue-cli-service build",
"lint": "vue-cli-service lint"
},
"dependencies": {
"@types/node": "^10.5.6",
"datamaps": "^0.5.9",
"jquery": "^3.5.0",
"typescript": "^3.0.1",
"vue": "^2.5.17",
"vue-class-component": "^6.0.0",
"vue-property-decorator": "^6.0.0"
},
"devDependencies": {
"@types/bootstrap": "^4.1.2",
"@types/jquery": "^3.3.5",
"@vue/cli-plugin-babel": "^3.0.0-rc.10",
"@vue/cli-plugin-typescript": "^3.0.0-rc.10",
"@vue/cli-service": "^3.0.0-rc.10",
"bootstrap": "^4.3.1",
"lint-staged": "^6.0.0",
"vue-template-compiler": "^2.5.17"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.ts": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"git add"
]
}
}