This repository was archived by the owner on Jan 24, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.71 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
{
"name": "insights-view",
"version": "1.0.0",
"license": "Apache-2.0",
"author": {
"name": "Yadong Zhang",
"email": "[email protected]",
"url": "https://github.com/007tom"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --no-cache",
"prettier": "prettier --write src/**/*.{ts,tsx}",
"prepare": "husky install",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@mui/icons-material": "^5.2.4",
"@mui/lab": "^5.0.0-alpha.61",
"@mui/material": "^5.2.4",
"classnames": "^2.3.1",
"echarts": "^5.2.2",
"mongoose": "^6.1.3",
"next": "^12.0.7",
"next-transpile-modules": "^9.0.0",
"react": "^17.0.2",
"react-device-detect": "^2.1.2",
"react-dom": "^17.0.2",
"zrender": "^5.2.1"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@emotion/babel-plugin": "^11.7.1",
"@storybook/addon-actions": "^6.4.9",
"@storybook/addon-essentials": "^6.4.9",
"@storybook/addon-links": "^6.4.9",
"@storybook/builder-webpack5": "^6.4.9",
"@storybook/manager-webpack5": "^6.4.9",
"@storybook/react": "^6.4.9",
"@types/node": "^17.0.0",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"babel-loader": "^8.2.3",
"eslint": "8.4.1",
"eslint-config-next": "12.0.7",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-storybook": "^0.5.5",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"prettier": "2.5.1",
"typescript": "^4.5.4",
"webpack": "^5.65.0"
},
"peerDependencies": {
"webpack": "^5.65.0"
}
}