-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.4 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
{
"name": "10mm-client-web",
"version": "0.1.0",
"private": true,
"scripts": {
"prepare": "panda codegen && husky install",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --ci",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@tanstack/react-query": "^5.14.6",
"axios": "^1.6.2",
"dayjs": "^1.11.10",
"framer-motion": "^10.16.5",
"mixpanel-browser": "^2.48.1",
"next": "13.4",
"react": "^18",
"react-dom": "^18",
"react-hotjar": "^6.2.0",
"react-lottie-player": "^1.5.5",
"react-spring-bottom-sheet": "^3.4.1"
},
"devDependencies": {
"@next/eslint-plugin-next": "^14.0.3",
"@pandacss/dev": "^0.18.3",
"@storybook/addon-essentials": "^7.5.3",
"@storybook/addon-interactions": "^7.5.3",
"@storybook/addon-links": "^7.5.3",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/blocks": "^7.5.3",
"@storybook/nextjs": "^7.5.3",
"@storybook/react": "^7.5.3",
"@storybook/test": "^7.6.3",
"@storybook/testing-library": "^0.2.2",
"@tanstack/react-query-devtools": "^5.8.4",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@types/gtag.js": "^0.0.18",
"@types/jest": "^29.5.10",
"@types/mixpanel-browser": "^2",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-lottie": "^1",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"chromatic": "^10.0.0",
"eslint": "^8",
"eslint-config-next": "14.0.3",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-storybook": "^0.6.15",
"eslint-plugin-testing-library": "^6.2.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.1.0",
"msw": "^2.0.11",
"prettier": "^3.1.0",
"storybook": "^7.5.3",
"typescript": "^5",
"webpack": "^5.89.0"
},
"packageManager": "[email protected]",
"msw": {
"workerDirectory": "public"
}
}