-
Notifications
You must be signed in to change notification settings - Fork 164
/
package.json
executable file
·78 lines (78 loc) · 2.32 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
{
"name": "webpacktemplate",
"version": "1.0.0",
"description": "Webpack template",
"main": "index.js",
"scripts": {
"start": "webpack serve --config webpack/webpack.dev.js",
"build": "npm run clean & NODE_ENV=production webpack --config webpack/webpack.prod.js",
"clean": "rimraf dist",
"format": "prettier --cache --write '**/*.{js,css,md,mdx,ts,tsx,yml}'",
"format:diff": "prettier --cache --list-different '**/*.{js,css,md,mdx,ts,tsx,yml}'",
"lint": "eslint '**/*.{js,ts,tsx,md,mdx}' --max-warnings=0",
"lint:fix": "npm run lint -- --fix",
"test": "jest",
"tscheck": "tsc",
"tscheck:watch": "tsc -w"
},
"browserslist": {
"production": [
">0.5%",
"last 1 year",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.23.5",
"@babel/plugin-transform-modules-commonjs": "^7.23.3",
"@babel/preset-env": "^7.23.5",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@types/node": "^20.10.2",
"babel-core": "^6.26.3",
"babel-loader": "^9.1.3",
"babel-plugin-module-resolver": "^5.0.0",
"babel-plugin-preval": "^5.1.0",
"babel-plugin-transform-commonjs": "^1.1.6",
"babel-plugin-transform-remove-console": "^6.9.4",
"babel-plugin-transform-replace-expressions": "^0.2.0",
"copy-webpack-plugin": "latest",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.3",
"json-minimizer-webpack-plugin": "^4.0.0",
"mini-css-extract-plugin": "^2.7.6",
"postcss-loader": "^7.3.3",
"postcss-preset-env": "^9.3.0",
"sass": "^1.69.5",
"sass-loader": "^13.3.2",
"terser-webpack-plugin": "^5.3.9",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.10.0"
},
"author": "https://github.com/vedees",
"repository": {
"type": "git",
"url": "git+https://github.com/vedees/webpack-template.git"
},
"bugs": {
"url": "https://github.com/vedees/webpack-template/issues"
},
"keywords": [
"webpack",
"babel",
"typescript",
"scss"
]
}