-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
47 lines (47 loc) · 1.11 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": "app-hub-web",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "npm run source && vue-cli-service serve",
"source": "npm i git+https://github.com/vechain/app-hub.git#gh-pages",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
},
"dependencies": {
"app-hub": "github:vechain/app-hub#gh-pages",
"imagemin-webpack-plugin": "2.4.2",
"register-service-worker": "^1.7.2",
"spectre.css": "^0.5.9",
"vue": "^2.7.16",
"vue-class-component": "^6.3.2",
"vue-property-decorator": "^7.3.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.12.1",
"@vue/cli-plugin-pwa": "^4.5.19",
"@vue/cli-plugin-typescript": "^3.12.1",
"@vue/cli-service": "^3.12.1",
"lint-staged": "12.5.0",
"typescript": "^3.9.10",
"vue-template-compiler": "^2.7.16"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.ts": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"git add"
]
}
}