-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.49 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.49 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
{
"name": "re-wave",
"version": "1.4.17",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"axios": "^1.12.2",
"framer-motion": "^11.2.4",
"react": "^18.3.1",
"react-bootstrap-icons": "^1.11.6",
"react-datepicker": "^6.9.0",
"react-dom": "^18.3.1",
"react-responsive": "^10.0.0",
"react-router-dom": "^6.23.1",
"react-scripts": "5.0.1",
"recoil": "^0.7.7",
"styled-components": "^6.1.11",
"web-vitals": "^2.1.4"
},
"scripts": {
"prestart": "node scripts/sync-version.js",
"start": "DISABLE_ESLINT_PLUGIN=true react-scripts start",
"prebuild": "node scripts/sync-version.js",
"build": "DISABLE_ESLINT_PLUGIN=true react-scripts build",
"test": "react-scripts test",
"test:ci": "CI=true react-scripts test --coverage --watchAll=false",
"eject": "react-scripts eject",
"lint": "eslint src --ext .js,.jsx --max-warnings=0",
"lint:fix": "eslint src --ext .js,.jsx --fix",
"format": "prettier --write \"src/**/*.{js,jsx,json,css}\" \"docs/**/*.md\" \"*.{json,md}\"",
"format:check": "prettier --check \"src/**/*.{js,jsx,json,css}\" \"docs/**/*.md\" \"*.{json,md}\""
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest": {
"moduleNameMapper": {
"^react-native$": "react-native-web",
"^.+\\.module\\.(css|sass|scss)$": "identity-obj-proxy",
"^axios$": "axios/dist/node/axios.cjs"
},
"collectCoverageFrom": [
"src/utils/**/*.{js,jsx}",
"src/hooks/**/*.{js,jsx}",
"src/game/**/*.{js,jsx}",
"!src/constants/version.js",
"!src/utils/data*.jsx"
],
"coverageThreshold": {
"./src/utils/": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": 80
},
"./src/hooks/": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": 80
},
"./src/game/": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": 80
}
}
},
"devDependencies": {
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"prettier": "3.3.3",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
}
}