forked from vvkk77/requester-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.75 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
{
"name": "requester-dashboard",
"version": "1.22.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"release:major": "npm version major -m '📦 [RELEASE:MAJOR] v%s' && git push && git push --tags",
"release:minor": "npm version minor -m '📦 [RELEASE:MINOR] v%s' && git push && git push --tags",
"release:patch": "npm version patch -m '📦 [RELEASE:PATCH] v%s' && git push && git push --tags",
"i18n:report": "vue-cli-service i18n:report --src './src/**/*.?(js|vue)' --locales './src/locales/**/*.json'"
},
"dependencies": {
"axios": "^0.19.2",
"buefy": "^0.8.13",
"core-js": "^3.6.4",
"dayjs": "^1.8.23",
"dot-prop": "^5.2.0",
"js-cookie": "^2.2.1",
"register-service-worker": "^1.6.2",
"vue": "^2.6.11",
"vue-i18n": "^8.0.0",
"vue-router": "^3.1.5",
"vuex": "^3.1.2"
},
"devDependencies": {
"@kazupon/vue-i18n-loader": "^0.3.0",
"@types/js-cookie": "^2.2.5",
"@vue/cli-plugin-babel": "~4.2.0",
"@vue/cli-plugin-eslint": "~4.2.0",
"@vue/cli-plugin-pwa": "~4.2.0",
"@vue/cli-plugin-router": "~4.2.0",
"@vue/cli-plugin-vuex": "~4.2.0",
"@vue/cli-service": "~4.2.0",
"@vue/eslint-config-prettier": "^6.0.0",
"babel-eslint": "^10.0.3",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-vue": "^6.1.2",
"lint-staged": "^9.5.0",
"node-sass": "^4.12.0",
"prettier": "^1.19.1",
"sass-loader": "^8.0.2",
"vue-cli-plugin-i18n": "^0.6.1",
"vue-template-compiler": "^2.6.11"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue}": [
"vue-cli-service lint",
"git add"
]
}
}