-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.35 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.35 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
{
"name": "react-rematch-ts",
"version": "1.0.0",
"private": true,
"dependencies": {
"@rematch/core": "^2.0.0-next.10",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/react": "^19.0.3",
"@types/react-dom": "^19.0.2",
"@types/react-redux": "^7.1.34",
"@types/react-router-dom": "^5.3.3",
"core-js": "^3.39.0",
"dayjs": "^1.11.13",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-redux": "^9.2.0",
"react-router-dom": "^7.1.1",
"whatwg-fetch": "^3.4.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node ./webpack/dev.ts --bundleSize=false",
"start:size": "ts-node ./webpack/dev.ts --bundleSize=true",
"start:mock": "ts-node ./webpack/dev.ts --mock=true",
"dev": "ts-node ./webpack/dev.ts",
"build": "NODE_ENV=prod webpack --config ./webpack/prod.ts",
"lint": "eslint ./src --quiet",
"prettier": "prettier --write --print-width 100 \"src/**/*.{js,ts,tsx}\"",
"format": "yarn prettier && yarn lint -- --fix",
"prepare": "husky install"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/plugin-proposal-decorators": "^7.12.12",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.15.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"autoprefixer": "^9.7.4",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^6.4.0",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react": "^1.1.7",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-import-alias": "^1.2.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^5.0.2",
"html-webpack-plugin": "^5.3.2",
"husky": "^7.0.4",
"json-loader": "^0.5.7",
"less": "^4.1.2",
"less-loader": "^10.1.0",
"lint-staged": "^11.2.3",
"mini-css-extract-plugin": "^1.0.0",
"mockjs": "^1.1.0",
"postcss": "^8.3.9",
"postcss-loader": "^6.2.0",
"postcss-preset-env": "^6.7.0",
"pre-commit": "^1.2.2",
"prettier": "^1.19.1",
"react-refresh": "^0.16.0",
"source-map-loader": "^0.2.4",
"style-loader": "^3.3.0",
"stylelint": "^13.0.0",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"typescript": "4.5.4",
"webpack": "^5.58.2",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-dev-server": "^5.2.0"
},
"husky": {
"hooks": {
"pre-commit": "yarn format"
}
},
"prettier": {
"singleQuote": true,
"semi": true,
"stylelintIntegration": true,
"eslintIntegration": true,
"insertPragma": false,
"trailingComma": "none",
"arrowParens": "avoid"
}
}