-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
executable file
·119 lines (119 loc) · 4.43 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
{
"name": "webpack-typescript-react",
"version": "1.0.7",
"description": "Webpack 5 boilerplate with support of most common loaders and modules",
"keywords": [
"react",
"typescript",
"webpack",
"webpack 5",
"webpack boilerplate"
],
"repository": {
"type": "git",
"url": "git@github.com:glook/webpack-typescript-react.git"
},
"license": "MIT",
"author": "Andrey Polyakov <andrey@polyakov.im>",
"main": "webpack.config.babel.js",
"scripts": {
"build": "cross-env NODE_ENV=production webpack --config webpack.config.babel.js",
"profile": "cross-env NODE_ENV=production webpack --profile --json --config webpack.config.babel.js > ./dist/profile.json && webpack-bundle-analyzer ./dist/profile.json",
"start": "cross-env WEBPACK_IS_DEV_SERVER=true NODE_ENV=development webpack serve --config webpack.config.babel.js",
"release": "npm version patch",
"update-hooks": "npx simple-git-hooks",
"prerelease": "npm run update-hooks",
"postinstall": "npm run update-hooks"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"post-commit": "git update-index --again"
},
"dependencies": {
"@types/classnames": "^2.3.0",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"classnames": "^2.3.1",
"normalize.css": "^8.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@babel/core": "~7.16.7",
"@babel/plugin-proposal-class-properties": "~7.16.7",
"@babel/plugin-proposal-export-default-from": "^7.16.7",
"@babel/plugin-proposal-export-namespace-from": "~7.16.7",
"@babel/plugin-proposal-object-rest-spread": "~7.16.7",
"@babel/plugin-proposal-throw-expressions": "~7.16.7",
"@babel/plugin-syntax-dynamic-import": "~7.8.3",
"@babel/plugin-transform-runtime": "~7.16.7",
"@babel/preset-env": "~7.16.7",
"@babel/preset-react": "~7.16.7",
"@babel/register": "~7.16.7",
"@pmmmwh/react-refresh-webpack-plugin": "~0.5.4",
"@svgr/webpack": "~6.1.2",
"@teamsupercell/typings-for-css-modules-loader": "~2.5.1",
"@typescript-eslint/eslint-plugin": "~5.9.0",
"@typescript-eslint/parser": "~5.9.0",
"autoprefixer": "~10.4.2",
"babel-eslint": "~10.1.0",
"babel-loader": "~8.2.3",
"clean-webpack-plugin": "~4.0.0",
"copy-webpack-plugin": "~10.2.0",
"core-js": "~3.20.2",
"cross-env": "^7.0.3",
"css-loader": "~6.5.1",
"cssnano": "~5.0.15",
"eslint": "~8.6.0",
"eslint-config-airbnb-base": "~15.0.0",
"eslint-config-airbnb-typescript": "~16.1.0",
"eslint-config-prettier": "~8.3.0",
"eslint-import-resolver-alias": "~1.1.2",
"eslint-plugin-import": "~2.25.4",
"eslint-plugin-jsx-a11y": "~6.5.1",
"eslint-plugin-react": "~7.28.0",
"eslint-plugin-react-hooks": "~4.3.0",
"eslint-webpack-plugin": "~3.1.1",
"fork-ts-checker-webpack-plugin": "~6.5.0",
"html-loader": "~3.1.0",
"html-webpack-plugin": "~5.5.0",
"import-sort-style-module-and-prefix": "~0.1.3",
"less": "~4.1.2",
"less-loader": "~10.2.0",
"mini-css-extract-plugin": "~2.4.6",
"path": "~0.12.7",
"postcss": "~8.4.5",
"postcss-loader": "~6.2.1",
"prettier": "~2.5.1",
"prettier-plugin-import-sort": "~0.0.7",
"pretty-quick": "~3.1.3",
"react-refresh": "~0.11.0",
"regenerator-runtime": "~0.13.9",
"resolve-url-loader": "~4.0.0",
"sass": "~1.47.0",
"sass-loader": "~12.4.0",
"sass-resources-loader": "~2.2.4",
"simple-git-hooks": "^2.7.0",
"style-loader": "~3.3.1",
"svg-url-loader": "~7.1.1",
"terser-webpack-plugin": "~5.3.0",
"ts-loader": "~9.2.6",
"typescript": "~4.5.4",
"url-loader": "~4.1.1",
"webpack": "~5.65.0",
"webpack-bundle-analyzer": "~4.5.0",
"webpack-cli": "~4.9.1",
"webpack-dev-server": "~4.7.2",
"webpack-merge": "~5.8.0"
},
"importSort": {
".ts, .tsx": {
"style": "module-and-prefix",
"parser": "typescript"
},
".js, .jsx": {
"style": "module-and-prefix",
"parser": "babylon"
}
}
}