-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.73 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 2.73 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "colony-admin",
"version": "0.1.0",
"private": false,
"type": "module",
"license": "MIT",
"description": "A free, bilingual React admin dashboard built on Ant Design v6, Vite 8 and TypeScript. No meta-framework, no prerelease dependencies.",
"keywords": [
"ant-design",
"antd",
"admin",
"dashboard",
"template",
"react",
"vite",
"typescript"
],
"homepage": "https://github.com/ColorlibHQ/colony",
"repository": {
"type": "git",
"url": "git+https://github.com/ColorlibHQ/colony.git"
},
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"packageManager": "pnpm@10.33.2",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"typecheck": "tsc -b --noEmit false --emitDeclarationOnly false",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,css,json}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,css,json}\"",
"test": "vite build --logLevel error && vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"msw:init": "msw init demo-public --save",
"build:demo": "tsc -b && cross-env VITE_ENABLE_MSW=true vite build",
"preview:demo": "pnpm build:demo && vite preview",
"size": "vite build && node scripts/bundle-budget.mjs",
"test:e2e:ui": "playwright test --ui"
},
"dependencies": {
"@ant-design/icons": "^6.3.2",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@tanstack/react-query": "^5.101.4",
"antd": "^6.6.1",
"dayjs": "^1.11.23",
"i18next": "^26.3.6",
"i18next-browser-languagedetector": "^8.2.0",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-hook-form": "^7.85.0",
"react-i18next": "^17.0.11",
"react-router": "^8.3.0",
"recharts": "^3.10.1",
"zod": "^4.4.3",
"zustand": "^5.0.15"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.62.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/node": "^22.15.0",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@vitejs/plugin-react": "^6.0.5",
"cross-env": "^10.1.0",
"eslint": "^9.30.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^15.15.0",
"jsdom": "^26.0.0",
"msw": "^2.15.0",
"prettier": "^3.6.0",
"typescript": "~6.0.3",
"typescript-eslint": "^8.67.0",
"vite": "^8.2.1",
"vitest": "^4.1.11"
},
"msw": {
"workerDirectory": [
"demo-public"
]
},
"pnpm": {
"onlyBuiltDependencies": [
"@swc/core",
"esbuild",
"msw"
]
}
}