forked from ParkYoungWoong/vue3-webpack-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.38 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.38 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "webpack-basic",
"version": "1.0.0",
"description": "A basic project template with Vue 3 + TypeScript",
"scripts": {
"dev": "cross-env TS_NODE_PROJECT=\"tsconfig-for-webpack-config.json\" NODE_ENV=development webpack serve --env=dev",
"build": "cross-env TS_NODE_PROJECT=\"tsconfig-for-webpack-config.json\" NODE_ENV=production webpack --env=prod",
"lint": "npx eslint ./src --fix"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@babel/preset-typescript": "^7.23.3",
"@rushstack/eslint-patch": "^1.7.2",
"@types/compose-function": "^0.0.33",
"@types/lodash": "^4.14.202",
"@types/node": "^14.18.63",
"@vue/compiler-sfc": "^3.0.11",
"@vue/eslint-config-typescript": "^11.0.3",
"autoprefixer": "^10.2.5",
"babel-loader": "^9.0.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.0.0",
"css-minimizer-webpack-plugin": "^5.0.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.21.1",
"eslint-webpack-plugin": "^4.0.1",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^6.5.3",
"html-webpack-plugin": "^5.3.1",
"mini-css-extract-plugin": "^2.8.0",
"postcss": "^8.2.8",
"postcss-loader": "^7.0.0",
"postcss-preset-env": "^9.3.0",
"prettier": "^2.8.8",
"resolve-url-loader": "^5.0.0",
"sass": "^1.32.8",
"sass-loader": "^13.0.0",
"style-loader": "^3.0.0",
"style-resources-loader": "^1.5.0",
"terser-webpack-plugin": "^5.3.10",
"thread-loader": "^3.0.4",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^4.9.5",
"typescript-plugin-css-modules": "^5.0.2",
"uglify-js": "^3.17.4",
"vue-loader": "^17.0.0",
"vue-style-loader": "^4.1.3",
"webpack": "^5.27.1",
"webpack-chain": "^6.5.1",
"webpack-cli": "^5.0.0",
"webpack-dev-server": "^4.0.0"
},
"dependencies": {
"compose-function": "^3.0.3",
"core-js": "^3.35.1",
"lodash": "^4.17.21",
"pinia": "^2.1.7",
"ress": "^5.0.2",
"vue": "^3.2.0",
"vue-router": "^4.3.0"
},
"engines": {
"node": ">= 14.15.0"
}
}