-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.89 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.89 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
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
{
"name": "react--bp",
"version": "1.0.0",
"description": "Full config for react application",
"author": "Mikhail Guskov <meguskov@gmail.com>",
"homepage": "https://github.com/Megoos/react--bp",
"license": "MIT",
"scripts": {
"postinstall": "husky install",
"dev": "cross-env NODE_ENV=development webpack serve --config webpack/development.js --color --progress",
"build": "yarn run clean:build && cross-env NODE_ENV=production webpack --config webpack/production.js --color --progress",
"build:analyze": "cross-env ANALYZE=true yarn build",
"start": "serve -s -n build",
"test": "jest",
"test:watch": "jest --watch",
"lint": "run-p lint:ts lint:scss check-types",
"lint:ts": "eslint '**/*.{ts,tsx}' --cache --cache-location 'node_modules/.cache/.eslintcache' ",
"lint:scss": "stylelint './src/**/*.scss'",
"check-types": "tsc",
"clean": "run-p clean:build clean:cache clean:test",
"clean:build": "rimraf build",
"clean:cache": "rimraf node_modules/.cache",
"clean:test": "jest --clearCache"
},
"dependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0"
},
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/preset-env": "^7.12.16",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.12.16",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.4.3",
"@svgr/webpack": "^5.5.0",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.28",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@types/react-router-dom": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"autoprefixer": "^10.2.4",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^7.0.0",
"core-js": "^3.8.3",
"cross-env": "^7.0.3",
"css-loader": "^5.0.2",
"css-minimizer-webpack-plugin": "^1.2.0",
"dotenv-webpack": "^6.0.0",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^6.1.0",
"html-webpack-plugin": "^5.1.0",
"husky": "^5.0.9",
"jest": "^26.6.3",
"jest-environment-jsdom-sixteen": "^1.0.3",
"mini-css-extract-plugin": "^1.3.7",
"node-sass": "^5.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.6",
"postcss-loader": "^5.0.0",
"postcss-normalize": "^9.0.0",
"prettier": "^2.2.1",
"react-refresh": "^0.9.0",
"rimraf": "^3.0.2",
"sass-loader": "^11.0.1",
"serve": "^11.3.2",
"style-loader": "^2.0.0",
"stylelint": "^13.10.0",
"stylelint-at-rule-no-children": "^0.3.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-sass-guidelines": "^8.0.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-declaration-block-no-ignored-properties": "^2.3.0",
"stylelint-webpack-plugin": "^2.1.1",
"terser-webpack-plugin": "^5.1.1",
"thread-loader": "^3.0.1",
"ts-jest": "^26.5.1",
"typescript": "^4.1.5",
"webpack": "^5.22.0",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^4.5.0",
"webpack-dev-middleware": "^4.1.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3",
"webpackbar": "^5.0.0-3",
"workbox-webpack-plugin": "^6.1.0"
},
"browserslist": {
"production": [
"> 1%",
"not ie <= 11",
"not dead",
"not op_mini all"
],
"development": [
"last 2 chrome version",
"last 2 firefox version",
"last 1 Safari version"
]
},
"sideEffects": [
"**/*.css",
"**/*.scss"
]
}