This repository has been archived by the owner on Mar 8, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.72 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
{
"name": "senpy-frontend",
"version": "0.1.0",
"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",
"copy:redirects": "cpx ./_redirects ./dist/",
"build:all": "npm run build && npm run copy:redirects"
},
"dependencies": {
"core-js": "3.12.1",
"cpx": "1.5.0",
"normalize.css": "8.0.1",
"sakura.css": "1.3.1",
"vue": "3.0.11",
"vue-class-component": "8.0.0-rc.1",
"vue-router": "4.0.6",
"vuex": "4.0.0"
},
"devDependencies": {
"@commitlint/cli": "12.1.1",
"@commitlint/config-conventional": "12.1.1",
"@types/chai": "4.2.18",
"@types/mocha": "8.2.2",
"@typescript-eslint/eslint-plugin": "4.23.0",
"@typescript-eslint/parser": "4.23.0",
"@vue/cli-plugin-babel": "4.5.13",
"@vue/cli-plugin-eslint": "4.5.13",
"@vue/cli-plugin-router": "4.5.13",
"@vue/cli-plugin-typescript": "4.5.13",
"@vue/cli-plugin-unit-mocha": "4.5.13",
"@vue/cli-plugin-vuex": "4.5.13",
"@vue/cli-service": "4.5.13",
"@vue/compiler-sfc": "3.0.11",
"@vue/eslint-config-airbnb": "5.3.0",
"@vue/eslint-config-typescript": "7.0.0",
"@vue/test-utils": "2.0.0-rc.6",
"chai": "4.3.4",
"commitizen": "4.2.3",
"cz-conventional-commit": "1.0.6",
"eslint": "7.26.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-vue": "7.9.0",
"husky": "6.0.0",
"lint-staged": "11.0.0",
"sass": "1.32.12",
"sass-loader": "8.0.2",
"typescript": "4.2.4"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"vue-cli-service lint",
"git add"
]
}
}