-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
61 lines (61 loc) · 1.82 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": "footprint",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "echo 'please write a test code'",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "yarn lint:fix && prettier -w ./components/**/*.{tsx,scss} ./styles/**/*.{css,scss} ./pages/**/*.{ts,tsx}",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepare": "husky install"
},
"dependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"axios": "^1.6.8",
"chart.js": "^4.4.2",
"chartjs-plugin-datalabels": "^2.2.0",
"classnames": "^2.5.1",
"framer-motion": "^11",
"next": "^13.5.6",
"react": "^18.3.1",
"react-chartjs-2": "^5.2.0",
"react-cookie-consent": "^9.0.0",
"react-dom": "^18.3.1",
"react-gtm-module": "^2.0.11",
"react-hook-form": "^7.51.4",
"recoil": "^0.7.7",
"sass": "^1.77.2"
},
"devDependencies": {
"@babel/core": "^7.24.5",
"@chakra-ui/storybook-addon": "^5.1.0",
"@storybook/addon-actions": "^8.1.1",
"@storybook/addon-essentials": "^8.1.1",
"@storybook/addon-interactions": "^8.1.1",
"@storybook/addon-links": "^8.1.1",
"@storybook/nextjs": "^8.1.1",
"@storybook/react": "^8.1.1",
"@storybook/test": "^8.1.1",
"@types/node": "18.19.33",
"@types/react": "18.3.2",
"@types/react-dom": "18.3.0",
"@types/react-gtm-module": "^2.0.3",
"babel-loader": "^9.1.3",
"eslint": "8.57.0",
"eslint-config-next": "^13.5.6",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-storybook": "^0.8.0",
"husky": "^9.0.11",
"prettier": "^3.2.5",
"storybook": "^8.1.1",
"typescript": "4.9.5"
}
}