-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.8 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.8 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
{
"name": "webpack-template",
"version": "0.11.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx cross-env TS_NODE_PROJECT=\"tsconfig-for-webpack-config.json\" NODE_OPTIONS=--openssl-legacy-provider webpack --config webpack.config.ts --mode production",
"dev": "npx cross-env TS_NODE_PROJECT=\"tsconfig-for-webpack-config.json\" NODE_OPTIONS=--openssl-legacy-provider webpack serve --config webpack.config.ts --mode development",
"deploy": "npm run build && npx gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mizok/webpack_playground.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mizok/webpack_playground/issues"
},
"homepage": "https://github.com/mizok/webpack_playground#readme",
"devDependencies": {
"@types/webpack-dev-server": "^4.7.2",
"copy-webpack-plugin": "^9.0.1",
"cross-env": "^7.0.3",
"css-loader": "^5.2.1",
"css-minimizer-webpack-plugin": "^4.0.0",
"ejs": "^3.1.6",
"gh-pages": "^3.2.3",
"html-loader": "^3.0.1",
"html-webpack-plugin": "^5.3.1",
"mini-css-extract-plugin": "^1.5.0",
"postcss-loader": "^5.2.0",
"postcss-preset-env": "^6.7.0",
"sass": "^1.33.0",
"sass-loader": "^12.0.0",
"style-loader": "^2.0.0",
"template-ejs-loader": "latest",
"terser-webpack-plugin": "^5.3.1",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.5.5",
"webpack": "^5.31.2",
"webpack-bundle-analyzer": "^4.8.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.2"
},
"dependencies": {
"es6-promise": "^4.2.8"
},
"browserslist": [
"last 2 version",
"> 1%",
"IE 10"
]
}