-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.48 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
75
76
77
78
79
80
81
82
83
84
{
"name": "vue-webpage-builder",
"version": "1.4.4",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"test:unit": "vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"build:docs": "vuepress build docs -d dist/docs",
"serve:docs": "vuepress dev docs",
"build:all": "npm-run-all -s build build:docs"
},
"dependencies": {
"@sterashima/vue-component-sandbox": "^0.0.1-alpha.6",
"@vue/composition-api": "^1.0.0-rc.1",
"core-js": "^3.6.4",
"downloadjs": "^1.4.7",
"ejs": "^3.0.1",
"fp-ts": "^2.5.1",
"klona": "^2.0.4",
"lodash.clonedeep": "^4.5.0",
"lodash.merge": "^4.6.2",
"lodash.throttle": "^4.1.1",
"pretty": "^2.0.0",
"register-service-worker": "^1.6.2",
"store2": "^2.11.1",
"uuid": "^7.0.3",
"vue": "^2.6.12",
"vue-gtag": "^1.6.2",
"vue-router": "^3.1.5",
"vuetify": "^2.2.11"
},
"devDependencies": {
"@types/downloadjs": "^1.4.1",
"@types/ejs": "^3.0.1",
"@types/jest": "^24.0.19",
"@types/lodash.clonedeep": "^4.5.6",
"@types/lodash.merge": "^4.6.6",
"@types/lodash.throttle": "^4.1.6",
"@types/pretty": "^2.0.0",
"@types/uuid": "^7.0.3",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"@vue/cli-plugin-babel": "~4.2.0",
"@vue/cli-plugin-eslint": "~4.2.0",
"@vue/cli-plugin-pwa": "^4.2.3",
"@vue/cli-plugin-router": "~4.2.0",
"@vue/cli-plugin-typescript": "~4.2.0",
"@vue/cli-plugin-unit-jest": "~4.2.0",
"@vue/cli-service": "~4.2.0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^5.0.1",
"@vue/test-utils": "1.0.0-beta.31",
"@vuepress/plugin-google-analytics": "^1.5.0",
"brace": "^0.11.1",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-vue": "^6.1.2",
"lint-staged": "^9.5.0",
"material-design-icons-iconfont": "^5.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"raw-loader": "^4.0.0",
"sass": "^1.25.0",
"sass-loader": "^8.0.2",
"typescript": "~3.7.5",
"vue-cli-plugin-vuetify": "~2.0.5",
"vue-server-renderer": "^2.6.12",
"vue-template-compiler": "^2.6.12",
"vuepress": "^1.5.0",
"vuetify-loader": "^1.3.0",
"worker-loader": "^2.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"vue-cli-service lint",
"git add"
]
}
}