-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.17 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
{
"name": "cra1",
"version": "1.0.0",
"main": "src/index.tsx",
"license": "MIT",
"scripts": {
"dev": "NODE_ENV=development npx webpack serve --mode=development",
"build": "NODE_ENV=production npx webpack --mode=production",
"ts-check": "tsc --skipLibCheck --noEmit --project tsconfig.json",
"lint-fix": "eslint src --fix",
"codestyle-fix": "prettier --write **/*.{js,ts,tsx,json,scss}"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.5",
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.1",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"@types/styled-components": "^5.1.18",
"@types/webpack-env": "^1.16.2",
"autoprefixer": "^10.3.6",
"babel-loader": "^8.2.2",
"babel-preset-mobx": "^2.0.0",
"css-loader": "^6.3.0",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"fork-ts-checker-webpack-plugin": "^6.3.3",
"html-webpack-plugin": "^5.3.2",
"mini-css-extract-plugin": "^2.3.0",
"node-sass": "^6.0.1",
"postcss-loader": "^6.1.1",
"prettier": "^2.5.1",
"react-refresh": "^0.10.0",
"sass-loader": "^12.1.0",
"style-loader": "^3.3.0",
"typescript": "^4.4.3",
"webpack": "^5.55.1",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.3.0"
},
"browserslist": [
"last 2 chrome versions"
],
"dependencies": {
"@svgr/webpack": "^6.1.2",
"@types/react-router-dom": "^5.3.0",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-webpack-plugin": "^3.1.1",
"mobx": "^6.3.3",
"mobx-react": "^7.2.0",
"package": "^1.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.3.0",
"regenerator-runtime": "^0.13.9",
"styled-components": "^5.3.3"
}
}