-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.61 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
{
"name": "webpack-5-react-typescript-starter",
"private": true,
"version": "1.4.0",
"description": "Webpack 5 React TypeScript Starter",
"main": "src/index.tsx",
"scripts": {
"clean": "rimraf dist",
"start": "yarn run dev",
"dev": "cross-env NODE_ENV=development webpack serve --config config/webpack.config.dev.babel.js",
"build": "yarn run clean && cross-env NODE_ENV=production webpack --config config/webpack.config.prod.babel.js",
"profile": "cross-env NODE_ENV=production webpack --profile --json --config config/webpack.config.prod.babel.js > ./dist/profile.json && webpack-bundle-analyzer ./dist/profile.json",
"eslint:check": "eslint --ext .ts,.tsx --format friendly --ignore-path .gitignore src/",
"eslint:fix": "eslint --fix --ext .ts,.tsx --format friendly src/",
"stylelint:check": "stylelint src/styles/**/*.scss",
"stylelint:fix": "stylelint src/styles/**/*.scss --fix",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/piotrlewandowski/webpack-5-react-type-script-starter.git"
},
"keywords": [
"webpack",
"react",
"starter",
"boilerplate"
],
"author": "Piotr Lewandowski <[email protected]> (piotrlewandowski.info)",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/piotrlewandowski/webpack-5-react-type-script-starter/issues"
},
"homepage": "https://github.com/piotrlewandowski/webpack-5-react-type-script-starter#readme",
"devDependencies": {
"@babel/core": "7.22.10",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-logical-assignment-operators": "7.20.7",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.18.6",
"@babel/plugin-proposal-optional-chaining": "7.21.0",
"@babel/plugin-transform-destructuring": "7.22.10",
"@babel/preset-env": "7.22.10",
"@babel/preset-react": "7.22.5",
"@babel/preset-typescript": "7.22.5",
"@babel/register": "7.22.5",
"@commitlint/cli": "17.7.1",
"@commitlint/config-conventional": "17.7.0",
"@pmmmwh/react-refresh-webpack-plugin": "0.5.11",
"@svgr/webpack": "8.1.0",
"@typescript-eslint/eslint-plugin": "6.4.0",
"@typescript-eslint/parser": "6.4.0",
"babel-loader": "9.1.3",
"cross-env": "7.0.3",
"css-loader": "6.8.1",
"css-minimizer-webpack-plugin": "5.0.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.47.0",
"eslint-config-prettier": "9.0.0",
"eslint-formatter-friendly": "7.0.0",
"eslint-loader": "4.0.2",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-webpack-plugin": "4.0.1",
"html-webpack-plugin": "5.5.3",
"husky": "8.0.3",
"lint-staged": "14.0.0",
"mini-css-extract-plugin": "2.7.6",
"postcss-scss": "4.0.7",
"prettier": "3.0.2",
"react-refresh": "0.14.0",
"react-refresh-typescript": "2.0.9",
"rimraf": "5.0.1",
"sass": "1.65.1",
"sass-loader": "13.3.2",
"style-loader": "3.3.3",
"stylelint": "15.10.2",
"stylelint-config-standard": "34.0.0",
"terser-webpack-plugin": "5.3.9",
"ts-loader": "9.4.4",
"typescript": "5.1.6",
"webpack": "5.88.2",
"webpack-bundle-analyzer": "4.9.0",
"webpack-cli": "4.10.0",
"webpack-dev-server": "4.15.1",
"webpack-merge": "5.9.0",
"webpack-notifier": "1.15.0"
},
"dependencies": {
"@types/node": "20.5.0",
"@types/react": "18.2.20",
"@types/react-dom": "18.2.7",
"@types/webpack-env": "1.18.1",
"react": "18.2.0",
"react-dom": "18.2.0"
}
}