generated from Learning-Is-Vital-In-Development/study-template
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
99 lines (99 loc) · 3.71 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
91
92
93
94
95
96
97
98
99
{
"name": "23-18-frontend-test",
"version": "1.0.0",
"description": "프론트엔드 TDD 스터디",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "jest",
"__Jest test__": "",
"test:watch": "jest --watch",
"test:watch-all": "jest --watchAll",
"test:dohye1": "jest --watch --testPathPattern=dohye1",
"test:sasha1107": "jest --watch --testPathPattern=sasha1107",
"test:sso214": "jest --watch --testPathPattern=sso214",
"test:jiji-hoon96": "jest --watch --testPathPattern=jiji-hoon96/3주차",
"test:codyMan0": "jest --watch --testPathPattern=codyMan0",
"test:hojoon": "jest --watch --testPathPattern=hojoon",
"test:leehaeun0": "jest --watch --testPathPattern=leehaeun0",
"__Dev server__": "",
"start:example": "vite ./src/e2e-example",
"start:dohye1": "vite ./src/dohye1",
"start:sasha1107": "vite ./src/sasha1107",
"start:sso214": "vite ./src/sso214",
"start:jiji-hoon96": "vite ./src/jiji-hoon96",
"start:codyMan0": "vite ./src/codyMan0",
"start:hojoon": "vite ./src/hojoon",
"start:leehaeun0": "vite ./src/leehaeun0",
"__E2E test__": "",
"test:e2e:example": "npx playwright test -c ./src/e2e-example/playwright.config.ts",
"test:e2e:dohye1": "npx playwright test -c ./src/dohye1/playwright.config.ts",
"test:e2e:sasha1107": "npx playwright test -c ./src/sasha1107/playwright.config.ts",
"test:e2e:sso214": "npx playwright test -c ./src/sso214/playwright.config.ts",
"test:e2e:jiji-hoon96": "npx playwright test -c ./src/jiji-hoon96/playwright.config.ts",
"test:e2e:codyMan0": "npx playwright test -c ./src/codyMan0/playwright.config.ts",
"test:e2e:hojoon": "npx playwright test -c ./src/hojoon/playwright.config.ts",
"test:e2e:leehaeun0": "npx playwright test -c ./src/leehaeun0/playwright.config.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Learning-Is-Vital-In-Development/23-18-frontend-test.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Learning-Is-Vital-In-Development/23-18-frontend-test/issues"
},
"homepage": "https://github.com/Learning-Is-Vital-In-Development/23-18-frontend-test#readme",
"engines": {
"node": ">=18.18.0 <19.0.0",
"npm": ">=9.8.1 <11.0.0",
"yarn": "please-use-npm"
},
"dependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.22.20",
"@babel/preset-react": "^7.22.15",
"@babel/preset-typescript": "^7.23.0",
"@faker-js/faker": "^8.2.0",
"@tanstack/react-query": "^5.4.3",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.5.1",
"axios": "^1.6.0",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-transform-stub": "^2.0.0",
"jotai": "^2.5.0",
"msw": "^2.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.17.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"zustand": "^4.4.4"
},
"devDependencies": {
"@playwright/test": "^1.40.0",
"@types/jest": "^29.5.5",
"@types/node": "^20.10.0",
"@types/react": "^18.2.24",
"@types/react-dom": "^18.2.8",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"@vitejs/plugin-react": "^4.2.0",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.4.2",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest-transform-css": "^6.0.1",
"prettier": "^3.0.3",
"typescript-plugin-css-modules": "^5.0.1",
"undici": "^5.27.2",
"vite": "^5.0.2"
}
}