-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.64 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.64 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
51
52
53
54
55
56
{
"name": "crosscode-save-editor",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
},
"dependencies": {
"ant-design-vue": "^2.0.0",
"core-js": "^3.9.0",
"crypto-js": "^4.0.0",
"minireset.css": "0.0.6",
"vue": "^3.0.6"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.5.11",
"@vue/cli-plugin-eslint": "^4.5.11",
"@vue/cli-service": "^4.5.11",
"@vue/compiler-sfc": "^3.0.6",
"@vue/eslint-config-standard": "^5.1.2",
"babel-eslint": "^10.1.0",
"babel-plugin-import": "^1.13.3",
"eslint": "^6.7.2",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^7.6.0",
"lint-staged": "^9.5.0",
"sass": "^1.32.8",
"sass-loader": "^8.0.2",
"stylelint": "^13.11.0",
"stylelint-config-idiomatic-order": "^8.1.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-declaration-block-no-ignored-properties": "^2.3.0",
"stylelint-group-selectors": "^1.0.8",
"stylelint-high-performance-animation": "^1.5.2",
"stylelint-no-unsupported-browser-features": "^4.1.4",
"stylelint-no-unused-selectors": "^1.0.32",
"stylelint-selector-no-empty": "^1.0.7",
"stylelint-suitcss": "^3.0.0",
"stylelint-z-index-value-constraint": "^1.1.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue}": [
"vue-cli-service lint",
"git add"
]
}
}