-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
76 lines (76 loc) · 2.55 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
{
"name": "react-cypress-ts-template",
"version": "0.1.0",
"license": "UNLICENSED",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"test:coverage": "yarn test --watchAll=false --collectCoverageFrom=src/**/*.ts* --collectCoverageFrom=!src/**/*.*.ts* --coverage",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --watch --runInBand",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|json|css|md|mdx|html)\"",
"lint": "eslint . --cache-location node_modules/.cache/eslint",
"typecheck": "tsc --noEmit",
"validate": "npm-run-all --parallel format lint typecheck build",
"cy:open": "cypress open",
"cy:open-e2e": "server-test 3000 'cypress open --e2e --browser chrome'",
"cy:run-e2e": "server-test 3000 'cypress run --e2e --browser chrome'",
"cy:open-ct": "cypress open --component --browser chrome",
"cy:run-ct": "cypress run --component --browser chrome",
"cy:run-ct-fast": "yarn cy:run-ct --config video=false screenshot=false"
},
"dependencies": {
"react": "19.0.0",
"react-dom": "19.0.0",
"react-scripts": "5.0.1",
"web-vitals": "3.5.2"
},
"devDependencies": {
"@cypress/grep": "4.1.0",
"@testing-library/cypress": "10.0.3",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.2.0",
"@testing-library/user-event": "14.6.1",
"@types/jest": "29.5.14",
"@types/node": "22.13.4",
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"@typescript-eslint/eslint-plugin": "8.24.1",
"@typescript-eslint/parser": "8.24.1",
"cypress": "13.17.0",
"eslint": "8.57.1",
"eslint-config-prettier": "10.0.1",
"eslint-config-react-app": "7.0.1",
"eslint-plugin-chai-friendly": "1.0.1",
"eslint-plugin-cypress": "4.1.0",
"eslint-plugin-no-only-tests": "3.3.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "4.3.8",
"jest": "27.5.1",
"jest-environment-jsdom": "27.5.1",
"lint-staged": "15.4.3",
"npm-run-all2": "7.0.2",
"prettier": "2.8.8",
"start-server-and-test": "2.0.10",
"ts-jest": "27.1.4",
"typescript": "5.7.3"
},
"husky": {
"hooks": {
"pre-commit": "yarn typecheck && yarn test --watchAll=false && lint-staged"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}