-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.22 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": "script-reference",
"version": "1.0.0",
"private": true,
"scripts": {
"setup": "yarn && yarn setup:api",
"setup:api": "git clone https://github.com/Raid-Gaming/script-reference-api api && cd api && yarn && cd .. && yarn build:api",
"update:api": "rimraf api && yarn setup:api",
"serve": "vue-cli-service serve",
"build": "yarn build:api && yarn build:app",
"build:app": "vue-cli-service build",
"build:api": "rimraf ./public/api && cd api && yarn build && cd .. && mv ./api/dist ./public/api",
"clean": "rimraf node_modules && rimraf dist",
"lint": "vue-cli-service lint"
},
"dependencies": {
"@vueuse/core": "^4.0.0-rc.8",
"axios": "^0.21.1",
"axios-cache-adapter": "^2.7.3",
"clear": "^0.1.0",
"core-js": "^3.13.1",
"fuzzysort": "^1.1.4",
"highlight.js": "^11.0.0",
"mitt": "^2.1.0",
"normalize.css": "^8.0.1",
"vue": "^3.0.11",
"vue-i18n": "^9.1.6",
"vue-router": "^4.0.8"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"@vue/cli-plugin-babel": "^4.5.13",
"@vue/cli-plugin-eslint": "^4.5.13",
"@vue/cli-plugin-pwa": "^4.5.13",
"@vue/cli-plugin-router": "^4.5.13",
"@vue/cli-plugin-typescript": "^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",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-vue": "^7.10.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0",
"rimraf": "^3.0.2",
"sass": "^1.34.0",
"sass-loader": "^10.1.0",
"typescript": "^4.3.2"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged",
"pre-push": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"prettier --write",
"vue-cli-service lint --fix",
"git add"
]
}
}