-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.33 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
{
"name": "test",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "npm run lint:fix&&npm run format",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,css,scss}\"",
"format:check": "prettier --check \"src/**/*.{js,jsx,ts,tsx,json,css,scss}\"",
"preview": "vite preview"
},
"dependencies": {
"@ant-design/icons": "^6.0.0",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.27.0",
"antd": "^5.24.8",
"browser-image-compression": "^2.0.2",
"click-to-react-component": "^1.1.2",
"file-saver": "^2.0.5",
"jszip": "^3.10.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-find": "^2.0.2",
"sass": "^1.87.0"
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"@stylistic/eslint-plugin": "^4.2.0",
"@types/file-saver": "^2.0.7",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.22.0",
"eslint-plugin-prettier": "^5.2.6",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^16.0.0",
"prettier": "^3.5.3",
"typescript": "~5.7.2",
"typescript-eslint": "^8.26.1",
"vite": "^6.3.1"
}
}