-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.04 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "nash-ui",
"version": "2.0.0",
"description": "nash-ui",
"main": "lib/index.js",
"scripts": {
"build:dev": "cross-env NODE_ENV=development webpack --progress --config build/webpack.dev.js",
"build": "cross-env NODE_ENV=production webpack --progress --config build/webpack.prod.js",
"dev": "cross-env NODE_ENV=development webpack-dev-server --progress --config build/webpack.dev.js",
"test": "jest",
"lint": "eslint --ext .html,.js,.vue src example --fix",
"prepare": "husky install",
"commit": "git cz",
"changelog": "conventional-changelog -p custom-config -i CHANGELOG.md -s -n ./changelog-option.js && git add CHANGELOG.md"
},
"keywords": [
"ui",
"web",
"mobile"
],
"author": "nash [email protected]",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@vue/eslint-config-prettier": "^3.0.1",
"@vue/eslint-config-standard": "^6.1.0",
"@vue/test-utils": "^1.3.0",
"autoprefixer": "^9.8.6",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^28.0.0",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^4.0.0",
"commitizen": "^4.2.5",
"compare-func": "^2.0.0",
"conventional-changelog": "^3.1.25",
"conventional-changelog-cli": "^2.2.2",
"conventional-changelog-custom-config": "^0.3.1",
"cross-env": "^7.0.3",
"css-loader": "^6.2.0",
"css-minimizer-webpack-plugin": "^4.1.0",
"cz-customizable": "^6.3.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "^5.1.1",
"eslint-plugin-vue": "^7.20.0",
"eslint-webpack-plugin": "^3.2.0",
"glob": "^8.0.3",
"html-webpack-plugin": "^5.3.2",
"husky": "^7.0.4",
"jest": "^28.1.3",
"jest-environment-jsdom": "^29.0.3",
"jest-serializer-vue": "^2.0.2",
"lint-staged": "^11.2.6",
"loader-utils": "^2.0.0",
"mini-css-extract-plugin": "^2.2.2",
"postcss-loader": "^7.0.1",
"regenerator-runtime": "^0.13.9",
"shelljs": "^0.8.4",
"terser-webpack-plugin": "^5.2.4",
"vue": "^2.7.14",
"vue-loader": "^15.9.8",
"vue-router": "^3.5.2",
"vue-template-compiler": "^2.7.14",
"webpack": "^5.75.0",
"webpack-bundle-analyzer": "^4.8.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"@babel/core": "^7.19.6",
"@babel/preset-env": "^7.19.4",
"@vue/vue2-jest": "^28.1.0",
"better-scroll": "^2.5.0",
"less": "^4.1.3",
"less-loader": "^11.1.0"
},
"browserslist": [
"> 1%",
"not ie <= 11",
"Android >= 4.0",
"iOS >= 8"
],
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue}": [
"eslint --ext .js,.html,.vue src --fix",
"git add"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./cz-config.js"
}
}
}