This repository has been archived by the owner on May 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.83 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
{
"name": "snutt-webclient-v2",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"dev:test": "vite --mode test",
"build": "tsc && vite build",
"build:dev": "tsc && vite build --mode dev",
"build:test": "tsc && vite build --mode test",
"preview": "vite preview",
"preview:test": "vite preview --mode test",
"test:e2e": "playwright test",
"test:unit": "jest",
"lint": "npx eslint ./src",
"deploy:dev": "scripts/deploy.sh dev",
"deploy:prod": "echo prod 배포는 github 에서 직접 릴리즈를 생성해 주세요."
},
"dependencies": {
"@tanstack/react-query": "5.14.1",
"@tanstack/react-query-devtools": "5.14.1",
"@wafflestudio/truffle-browser": "0.2.1",
"dayjs": "1.11.10",
"msw": "2.0.11",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-facebook-login": "4.1.1",
"react-router-dom": "6.21.0",
"styled-components": "6.1.1"
},
"devDependencies": {
"@jest/globals": "29.7.0",
"@playwright/test": "1.40.1",
"@tanstack/eslint-plugin-query": "^5.12.1",
"@types/node": "20.10.5",
"@types/react": "18.2.45",
"@types/react-dom": "18.2.18",
"@types/react-facebook-login": "4.1.10",
"@types/styled-components": "5.1.34",
"@typescript-eslint/eslint-plugin": "6.14.0",
"@typescript-eslint/parser": "6.14.0",
"@vitejs/plugin-react-swc": "3.5.0",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.0.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-simple-import-sort": "10.0.0",
"jest": "29.7.0",
"prettier": "3.1.1",
"serve": "^14.2.1",
"ts-jest": "29.1.1",
"ts-node": "10.9.2",
"typescript": "5.3.3",
"vite": "5.0.10"
},
"msw": {
"workerDirectory": "public"
}
}