-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) ยท 2.59 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
{
"name": "segam-web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint ./**/*.{ts,tsx} --cache --fix",
"prepare": "husky",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"serve-storybook": "serve storybook-static"
},
"dependencies": {
"@amplitude/analytics-browser": "^2.5.2",
"@ant-design/icons": "^5.4.0",
"@ant-design/nextjs-registry": "^1.0.0",
"@tanstack/react-query": "^5.51.24",
"@tanstack/react-query-devtools": "^5.52.0",
"antd": "^5.20.3",
"antd-style": "^3.6.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"crypto": "^1.0.1",
"dayjs": "^1.11.13",
"jwt-decode": "^4.0.0",
"next": "^14.2.6",
"next-auth": "^5.0.0-beta.20",
"notion-client": "^6.16.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-notion-x": "^6.16.0",
"react-simple-pull-to-refresh": "^1.3.3",
"return-fetch": "^0.4.5",
"return-fetch-json": "^0.4.5",
"tailwind-merge": "^2.2.1",
"vaul": "^0.9.1"
},
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@storybook/addon-essentials": "^7.6.12",
"@storybook/addon-interactions": "^7.6.12",
"@storybook/addon-links": "^7.6.12",
"@storybook/addon-onboarding": "^1.0.11",
"@storybook/addon-styling-webpack": "^0.0.6",
"@storybook/blocks": "^7.6.12",
"@storybook/nextjs": "^7.6.12",
"@storybook/react": "^7.6.12",
"@storybook/test": "^7.6.12",
"@tanstack/eslint-plugin-query": "^5.51.15",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"autoprefixer": "^10.0.1",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-next": "14.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.15",
"husky": "^9.0.6",
"lint-staged": "^15.2.0",
"lodash": "^4.17.21",
"postcss": "^8",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"storybook": "^7.6.12",
"tailwindcss": "^3.3.0",
"typescript": "^5"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
]
}
}