This repository was archived by the owner on Oct 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.25 KB
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
{
"name": "template",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"build:stage": "vue-cli-service build --mode staging",
"lint": "vue-cli-service lint"
},
"dependencies": {
"core-js": "^3.6.5",
"vue": "^3.1.5",
"vue-router": "^4.0.10",
"vuex": "^4.0.2"
},
"repository": "https://github.com/CrazyBitDev/vue3-boilerplate",
"license": "MIT",
"devDependencies": {
"@babel/eslint-parser": "^7.5.4",
"@vue/cli-plugin-babel": "5.0.4",
"@vue/cli-plugin-eslint": "5.0.4",
"@vue/cli-plugin-router": "5.0.4",
"@vue/cli-plugin-vuex": "5.0.4",
"@vue/cli-service": "5.0.4",
"@vue/compiler-sfc": "^3.0.0",
"@vue/eslint-config-standard": "6.1.0",
"babel-plugin-import": "^1.13.3",
"eslint": "8.12.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-vue": "8.5.0",
"lint-staged": "12.3.7",
"sass": "^1.37.0",
"sass-loader": "12.6.0"
},
"engines": {
"npm": ">= 6.9.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue}": [
"vue-cli-service lint",
"git add"
]
}
}