-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2 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
{
"name": "investmetic",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier": "prettier --write .",
"storybook": "storybook dev -p 6006",
"type-check": "tsc --noEmit -p ./tsconfig.json",
"build-storybook": "storybook build",
"deploy-storybook": "npx chromatic --project-token $CHROMATIC_PROJECT_TOKEN"
},
"dependencies": {
"@tanstack/react-query": "^5.59.19",
"axios": "^1.7.7",
"classnames": "^2.5.1",
"highcharts": "^11.4.8",
"highcharts-react-official": "^3.2.1",
"jwt-decode": "^4.0.0",
"next": "14.2.16",
"react": "^18",
"react-dom": "^18",
"react-tooltip": "^5.28.0",
"xlsx": "^0.18.5",
"zustand": "^5.0.1"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.2",
"@next/eslint-plugin-next": "^15.0.2",
"@storybook/addon-docs": "^8.4.2",
"@storybook/addon-essentials": "^8.4.2",
"@storybook/addon-interactions": "^8.4.2",
"@storybook/addon-onboarding": "^8.4.0",
"@storybook/blocks": "^8.4.0",
"@storybook/nextjs": "^8.4.2",
"@storybook/react": "^8.4.2",
"@storybook/test": "^8.4.2",
"@svgr/webpack": "^8.1.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"eslint": "^8.57.1",
"eslint-config-next": "14.2.16",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-storybook": "^0.10.1",
"lefthook": "^1.8.2",
"msw": "^2.6.2",
"prettier": "^3.3.3",
"sass": "^1.80.5",
"storybook": "^8.4.0",
"typescript": "^5"
},
"msw": {
"workerDirectory": [
"public"
]
}
}