-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.37 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
{
"name": "pickrap-fe",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"tsc": "tsc",
"storybook": "start-storybook -p 6006 -s ./public",
"build-storybook": "build-storybook s public",
"postinstall": "husky install"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@tanstack/react-query": "^4.14.1",
"axios": "^1.1.3",
"chart.js": "^4.2.0",
"chartjs-chart-wordcloud": "^4.1.1",
"chartjs-plugin-datalabels": "^2.2.0",
"emotion-reset": "^3.0.1",
"framer-motion": "^7.6.6",
"next": "12.3.1",
"react": "18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "18.2.0",
"react-loader-spinner": "^5.3.4",
"react-pdf": "^6.2.2",
"react-swipeable": "^7.0.0",
"recoil": "^0.7.6"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@emotion/babel-plugin": "^11.10.5",
"@emotion/babel-preset-css-prop": "^11.10.0",
"@storybook/addon-a11y": "^6.5.13",
"@storybook/addon-actions": "^6.5.13",
"@storybook/addon-essentials": "^6.5.13",
"@storybook/addon-interactions": "^6.5.13",
"@storybook/addon-links": "^6.5.13",
"@storybook/builder-webpack5": "^6.5.13",
"@storybook/manager-webpack5": "^6.5.13",
"@storybook/react": "^6.5.13",
"@storybook/testing-library": "^0.0.13",
"@svgr/webpack": "^6.5.0",
"@tanstack/eslint-plugin-query": "^4.14.2",
"@tanstack/react-query-devtools": "^4.14.1",
"@types/node": "18.11.5",
"@types/react": "18.0.22",
"@types/react-dom": "18.0.7",
"@types/react-pdf": "^6.2.0",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"babel-loader": "^8.2.5",
"chromatic": "^6.11.2",
"eslint": "8.22.0",
"eslint-config-next": "12.3.1",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-storybook": "^0.6.6",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"prettier": "^2.7.1",
"storybook-addon-next": "^1.6.9",
"typescript": "4.8.4"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}