-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 746 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 746 Bytes
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
{
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"vercel-build": "vite build",
"lint": "eslint src/core tests --ext .ts",
"typecheck": "tsc --noEmit -p tsconfig.json",
"test": "vitest run",
"test:coverage": "vitest run --coverage"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.43.0",
"@typescript-eslint/parser": "^8.43.0",
"@vitest/coverage-v8": "^3.2.4",
"autoprefixer": "^10.4.20",
"eslint": "^9.34.0",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.17",
"typescript": "^5.9.2",
"vite-plugin-ejs": "^1.7.0",
"vite-plugin-static-copy": "^2.2.0",
"vitest": "^3.2.4"
},
"dependencies": {
"vite": "^6.0.7"
}
}