-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
126 lines (126 loc) · 3.8 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "createvue",
"version": "1.0.0",
"description": "none",
"main": "index.js",
"engines": {
"node" : "~14.18.0"
},
"scripts": {
"precommit": "lint-staged",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack serve --progress --hot --inline --config build/webpack.dev.js",
"vite": "vite",
"vite:build": "vite build",
"vite:preview": "vite preview",
"commit": "node commit/git-commit.js",
"check-types": "tsc --watch",
"build": "webpack --config build/webpack.prod.js",
"publish": "npm run build && node commit/publish.js",
"lintcss": "stylelint --fix \"src/**/*.less\" --syntax less",
"commitlint": "commitlint -e"
},
"lint-staged": {
"src/**/*.{js,json,css,vue}": [
"prettier --write",
"eslint --fix ./src --ext .vue,.js,.ts"
],
"*.{html,vue,css,sass,scss,less}": [
"stylelint --fix"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/zxpsuper/createVue.git"
},
"keywords": [
"create",
"vue"
],
"author": "suporka",
"license": "MIT",
"bugs": {
"url": "https://github.com/zxpsuper/createVue/issues"
},
"homepage": "https://github.com/zxpsuper/createVue#readme",
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.13.16",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-object-rest-spread": "^7.13.8",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/preset-typescript": "^7.13.0",
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@types/node": "^14.14.41",
"@types/webpack-env": "^1.16.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"@vitejs/plugin-vue": "^2.2.2",
"@vue/compiler-sfc": "^3.0.11",
"autoprefixer": "^10.2.5",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^8.1.1",
"css-loader": "^5.2.2",
"css-minimizer-webpack-plugin": "^2.0.0",
"css-properties-sorting": "^1.0.10",
"dayjs": "^1.10.4",
"eslint": "^7.24.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-vue": "^7.9.0",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^6.2.4",
"friendly-errors-webpack-plugin": "^1.7.0",
"gh-pages": "^3.1.0",
"happypack": "^5.0.1",
"hard-source-webpack-plugin": "^0.13.1",
"html-webpack-plugin": "^5.3.1",
"husky": "^6.0.0",
"inquirer": "^8.0.0",
"less": "^4.1.1",
"less-loader": "^8.1.1",
"lint-staged": "^10.5.4",
"mini-css-extract-plugin": "^1.4.1",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"pinst": "^2.1.6",
"postcss": "^8.2.10",
"postcss-loader": "^5.2.0",
"prettier": "^2.2.1",
"sass": "^1.32.10",
"sass-loader": "^11.0.1",
"shelljs": "^0.8.4",
"style-loader": "^2.0.0",
"stylelint": "^13.13.0",
"stylelint-config-standard": "^22.0.0",
"stylelint-order": "^4.1.0",
"ts-loader": "^8.1.0",
"typescript": "^4.2.4",
"uglifyjs-webpack-plugin": "^2.2.0",
"uniq": "^1.0.1",
"url-loader": "^4.1.1",
"vue-loader": "^16.2.0",
"webpack": "^5.33.2",
"webpack-bundle-analyzer": "^4.4.1",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3",
"workbox-webpack-plugin": "^6.1.5"
},
"dependencies": {
"@babel/runtime": "^7.13.17",
"@babel/runtime-corejs3": "^7.13.17",
"@vitejs/plugin-vue": "^2.2.2",
"axios": "^0.21.1",
"core-js": "^3.11.0",
"es6-promise": "^4.2.5",
"vue": "^3.0.11",
"vue-router": "^4.0.6",
"vite": "^2.8.4",
"vuex": "^4.0.0"
}
}