-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.02 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
{
"name": "fe2",
"version": "2.0.2",
"private": true,
"type": "module",
"dependencies": {
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@fontsource/roboto": "^4.5.8",
"@mui/icons-material": "^5.11.0",
"@mui/material": "^5.10.7",
"@reduxjs/toolkit": "^1.9.1",
"debug": "^4.3.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-redux": "^8.0.2",
"react-relay": "^16.2.0",
"react-router-dom": "^6.8.0",
"redux-logger": "^3.0.6",
"redux-persist": "^6.0.0",
"relay-runtime": "^16.2.0",
"throttle-debounce": "^5.0.0",
"vite": "^5.0.12",
"web-vitals": "^2.1.4"
},
"scripts": {
"dev": "concurrently \"npm:watch-*\"",
"watch-react": "vite",
"build": "relay-compiler && tsc && vite build",
"preview": "vite preview",
"test": "env NODE_ENV=test vitest",
"relay": "relay-compiler",
"watch-relay": "nodemon --config nodemon-relay.json",
"lint": "eslint src/",
"lint-fix": "eslint --fix src/"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/debug": "^4.1.7",
"@types/react-relay": "^16.0.6",
"@types/react-router-dom": "^5.3.3",
"@types/redux-logger": "^3.0.9",
"@types/throttle-debounce": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"babel-plugin-relay": "^16.2.0",
"concurrently": "^7.6.0",
"eslint": "^8.32.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"nodemon": "^2.0.20",
"react-test-renderer": "^18.2.0",
"relay-compiler": "^16.2.0",
"vitest": "^1.2.2"
}
}