-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
82 lines (82 loc) · 2.23 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
{
"name": "vue2-final-boilerplate",
"version": "0.1.0",
"private": true,
"scripts": {
"commit": "git cz",
"dev": "vue-cli-service serve",
"build": "vue-tsc --noEmit && node ./bin/build",
"vite": "node ./bin/vite",
"vite:build": "vue-tsc --noEmit && BUILD=true MODERN=true yarn vite",
"lint": "vue-cli-service lint",
"test:unit": "vue-cli-service test:unit",
"test": "yarn run test:unit"
},
"dependencies": {
"@vue/composition-api": "^1.1.3",
"core-js": "^3.6.5",
"vue": "^2.6.11",
"vue-router": "^3.2.0"
},
"devDependencies": {
"@commitlint/cli": "7.2.0",
"@commitlint/config-conventional": "7.1.2",
"@types/jest": "^24.0.19",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-router": "~4.5.0",
"@vue/cli-plugin-typescript": "~4.5.0",
"@vue/cli-plugin-unit-jest": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^7.0.0",
"@vue/runtime-dom": "^3.2.6",
"@vue/test-utils": "^1.0.3",
"commitizen": "2.10.1",
"cz-customizable": "5.2.0",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^7.9.2",
"lint-staged": "^9.5.0",
"prettier": "^2.2.1",
"sass": "^1.26.5",
"sass-loader": "^8.0.2",
"typescript": "~4.4.2",
"unplugin-vue2-script-setup": "^0.5.4",
"vue-cli-plugin-vite": "~1.4.5",
"vue-template-compiler": "^2.6.11",
"vue-tsc": "^0.3.0"
},
"prettier": {
"printWidth": 100,
"tabWidth": 2,
"useTabs": false,
"semi": false,
"singleQuote": true,
"jsxSingleQuote": false,
"trailingComma": "all",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"arrowParens": "always"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": ".cz-configrc.js"
}
},
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -e $GIT_PARAMS"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"vue-cli-service lint",
"git add"
]
}
}