-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.91 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.91 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
{
"name": "inner-cosmos",
"private": true,
"version": "0.0.0",
"type": "module",
"engines": {
"node": ">=18.20.0",
"npm": ">=8.0.0",
"pnpm": ">=9.0.0"
},
"scripts": {
"dev": "vite",
"build": "vite build --mode production",
"build-fast": "vite build --mode production",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"preview": "vite preview",
"type-check": "tsc --noEmit",
"type-check:strict": "tsc --noEmit --strict",
"clean": "rm -rf dist node_modules/.vite",
"analyze": "npx vite-bundle-analyzer dist/stats.html",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest --watch",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,css,md}\""
},
"dependencies": {
"antd": "^5.21.6",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"lunar-typescript": "^1.8.0",
"qrcode": "^1.5.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.1",
"tailwind-merge": "^2.5.2",
"zustand": "^4.5.5"
},
"devDependencies": {
"@eslint/js": "^9.30.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/qrcode": "^1.5.5",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.6.0",
"@vitest/ui": "^3.2.4",
"autoprefixer": "^10.4.21",
"eslint": "^9.30.1",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.3.0",
"jsdom": "^26.1.0",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.14",
"typescript": "~5.8.3",
"typescript-eslint": "^8.35.1",
"vite": "^7.0.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4"
}
}