-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.96 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
{
"name": "snutt-ev-web",
"version": "2.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:test": "NODE_ENV=test next dev",
"build": "next build",
"start": "next start",
"build:dev": "env-cmd -f .env.dev next build",
"start:dev": "env-cmd -f .env.dev next start",
"build:prod": "env-cmd -f .env.prod next build",
"start:prod": "env-cmd -f .env.prod next start",
"build:test": "NODE_ENV=test next build",
"start:test": "NODE_ENV=test next start",
"export": "next build && next export",
"lint": "next lint",
"test:e2e": "playwright test",
"test:unit": "jest",
"deploy:dev": "scripts/deploy.sh dev",
"deploy:prod": "echo prod 배포는 github 에서 직접 릴리즈를 생성해 주세요."
},
"dependencies": {
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@tanstack/react-query": "^4.12.0",
"@tanstack/react-query-devtools": "^4.12.0",
"cookie": "^0.5.0",
"js-cookie": "^3.0.1",
"msw": "^1.2.1",
"next": "^13.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^3.1.4"
},
"devDependencies": {
"@jest/globals": "^29.3.1",
"@playwright/test": "^1.29.1",
"@types/cookie": "^0.5.1",
"@types/js-cookie": "^3.0.2",
"@types/node": "^18.11.9",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"env-cmd": "^10.1.0",
"eslint": "^8.28.0",
"eslint-config-next": "^13.0.5",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"jest": "^29.3.1",
"prettier": "^2.8.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"packageManager": "[email protected]",
"msw": {
"workerDirectory": "public"
}
}