-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.25 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "game-of-life",
"version": "0.6.0",
"private": true,
"dependencies": {
"@emotion/react": "11.14.0",
"@emotion/styled": "11.14.0",
"@mui/material": "6.3.0",
"@mui/styles": "6.3.0",
"@reduxjs/toolkit": "1.9.7",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.1.0",
"@testing-library/user-event": "14.5.2",
"@types/node": "22.10.2",
"@types/react-dom": "18.3.5",
"ramda": "0.30.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-redux": "9.2.0",
"react-scripts": "5.0.1",
"redux": "5.0.1",
"typescript": "5.7.2",
"web-vitals": "3.5.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"test:all": "npm run test -- --watchAll=false",
"test:ci": "start-server-and-test start 3000 cypress:run:record",
"eject": "react-scripts eject",
"preversion": "npm run test:all",
"postinstall": "husky install",
"version": "conventional-changelog --preset angular --infile CHANGELOG.md --same-file && git add CHANGELOG.md",
"cypress:run": "cypress run",
"cypress:run:record": "cypress run --record --key $CYPRESS_DASHBOARD_KEY",
"cypress:open": "cypress open",
"commit": "cz"
},
"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"
]
},
"devDependencies": {
"@types/jest": "29.5.14",
"@types/ramda": "0.30.2",
"@types/react": "18.3.18",
"conventional-changelog": "6.0.0",
"cypress": "13.17.0",
"cz-conventional-changelog": "3.3.0",
"husky": "9.1.7",
"lint-staged": "15.2.11",
"prettier": "3.4.2",
"start-server-and-test": "2.0.9"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run test:all"
}
},
"lint-staged": {
"*.{js,css,json,md}": [
"prettier --write",
"git add"
]
},
"engines": {
"npm": ">=8"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}