-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.23 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.23 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
{
"name": "forkzero.ai",
"private": true,
"version": "0.1.0",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build && tsx scripts/prerender.ts",
"preview": "vite preview",
"test": "vitest run --coverage",
"test:fast": "vitest run",
"test:watch": "vitest",
"lint": "eslint src scripts packages/ui/src",
"lint:fix": "eslint src scripts packages/ui/src --fix",
"format": "prettier --write 'src/**/*.{ts,tsx}' 'scripts/**/*.ts' 'packages/ui/src/**/*.{ts,tsx}'",
"format:check": "prettier --check 'src/**/*.{ts,tsx}' 'scripts/**/*.ts' 'packages/ui/src/**/*.{ts,tsx}'",
"prepare": "husky"
},
"dependencies": {
"@giscus/react": "^3.1.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.39.2",
"eslint-plugin-react-hooks": "^7.0.1",
"husky": "^9.1.7",
"prettier": "^3.8.1",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.55.0",
"vite": "^6.0.0",
"vitest": "^3.2.4"
}
}