This repository was archived by the owner on Oct 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.79 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.79 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
{
"name": "spectrumine.com",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:dev": "tsc && vite build --mode proddev",
"preview": "vite preview",
"eslint": "eslint src",
"stylelint": "stylelint src/**/*.css",
"lint": "eslint src; stylelint src/**/*.css",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prettier": "prettier --write ./src",
"gen": "node scripts/generate"
},
"dependencies": {
"@ant-design/icons": "^5.0.1",
"@vitejs/plugin-react-swc": "^3.3.0",
"antd": "^5.3.1",
"axios": "^1.3.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.9.0",
"zustand": "^4.3.6"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.0.4",
"@storybook/addon-interactions": "^7.0.4",
"@storybook/addon-links": "^7.0.4",
"@storybook/blocks": "^7.0.4",
"@storybook/react": "^7.0.4",
"@storybook/react-vite": "^7.0.4",
"@storybook/testing-library": "^0.1.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/three": "^0.150.1",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"@vitejs/plugin-react": "^3.1.0",
"chalk": "^5.2.0",
"dotenv": "^16.0.3",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-css": "^0.7.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-storybook": "^0.6.11",
"inquirer": "^9.2.4",
"prettier": "^2.8.7",
"prop-types": "^15.8.1",
"rollup-plugin-visualizer": "^5.9.0",
"storybook": "^7.0.5",
"stylelint": "^15.5.0",
"stylelint-config-standard": "^33.0.0",
"typescript": "^4.9.3",
"vite": "^4.2.0"
}
}