-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.82 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": "videogame-archive",
"version": "1.0.0",
"private": true,
"dependencies": {
"@reduxjs/toolkit": "^2.2.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^9.1.0",
"styled-components": "^6.1.8",
"uuid": "^9.0.1"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@craco/craco": "^7.1.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^15.0.1",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"@types/react": "^18.2.77",
"@types/react-dom": "^18.2.25",
"babel-plugin-styled-components": "^2.1.4",
"concurrently": "^8.0.1",
"eslint-config-prettier": "^9.1.0",
"postcss-styled-syntax": "^0.6.4",
"prettier": "3.2.5",
"react-scripts": "5.0.1",
"stylelint": "^16.4.0",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-standard": "^36.0.0",
"typescript": "^5.4.5"
},
"scripts": {
"start:client": "craco start",
"start": "concurrently --kill-others-on-fail \"craco start\" \"node server\"",
"build": "craco build",
"test": "craco test",
"test:ci": "craco test --watchAll=false",
"test:coverage": "craco test --watchAll=false --coverage",
"eject": "craco eject",
"lint:style": "stylelint './src/**/*.style.tsx'",
"checks": "yarn test:coverage && yarn lint:style",
"nuke": "rm -rf node_modules && yarn"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"proxy": "http://localhost:3001"
}