-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 2.07 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
{
"name": "yarn-berry-example",
"version": "0.1.0",
"private": true,
"homepage": "https://saseungmin.github.io/yarn-berry-example",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"lint": "eslint --ext ts,tsx .",
"test:unit": "jest",
"test:watch": "jest --watch",
"test:coverage": "yarn test:unit --coverage",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"cypress:record": "yarn cypress:run --browser chrome --record",
"test:e2e": "start-server-and-test start http://localhost:3000 cypress:record",
"eject": "react-scripts eject",
"release": "auto shipit"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@auto-it/git-tag": "^10.37.6",
"@swc/core": "^1.3.35",
"@swc/jest": "^0.2.24",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.4.0",
"@types/node": "^18.11.15",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@types/react-test-renderer": "^18.0.0",
"@types/testing-library__jest-dom": "^5.14.5",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"auto": "^10.37.6",
"cypress": "^12.1.0",
"eslint": "^8.29.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^5.10.1",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^29.4.2",
"jest-environment-jsdom": "^29.4.2",
"react-scripts": "^5.0.1",
"react-test-renderer": "^18.2.0",
"start-server-and-test": "^1.15.2",
"typescript": "4.7.4",
"web-vitals": "^3.1.0"
},
"packageManager": "[email protected]"
}