-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.47 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.47 KB
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
{
"name": "dnd-11th-6-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "node server.mjs",
"dev:https": "USE_HTTPS=true node server.mjs",
"build": "next build",
"start": "next start",
"start:https": "NODE_ENV=production USE_HTTPS=true node server.mjs",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --check --ignore-path .gitignore .",
"format:fix": "prettier --write --ignore-path .gitignore .",
"test": "jest --config jest.config.ts",
"docker-compose": "docker-compose up --build",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"chromatic": "npx chromatic --project-token=chpt_e99b5807ca49c9f"
},
"dependencies": {
"@hookform/resolvers": "^3.9.0",
"@jest/types": "^29.6.3",
"@storybook/addon-styling-webpack": "^1.0.0",
"@tanstack/react-query": "^5.51.23",
"axios": "^1.7.4",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"dayjs": "^1.11.12",
"lottie-react": "^2.4.0",
"next": "14.2.10",
"next-pwa": "^5.6.0",
"qrcode": "^1.5.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.52.1",
"tailwind-merge": "^2.5.2",
"zod": "^3.23.8",
"zustand": "^4.5.4"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.6.1",
"@storybook/addon-essentials": "^8.2.5",
"@storybook/addon-interactions": "^8.2.5",
"@storybook/addon-links": "^8.2.5",
"@storybook/addon-onboarding": "^8.2.5",
"@storybook/blocks": "^8.2.5",
"@storybook/nextjs": "^8.2.5",
"@storybook/react": "^8.2.5",
"@storybook/test": "^8.2.5",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.0",
"@types/jest": "^29.5.12",
"@types/node": "22.4.1",
"@types/qrcode": "^1.5.5",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.19",
"chromatic": "^11.7.1",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-next": "14.2.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-storybook": "^0.8.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.39",
"prettier": "^3.3.2",
"storybook": "^8.2.5",
"tailwindcss": "^3.4.4",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.4"
}
}