-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.69 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.69 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
{
"name": "project-harness",
"version": "1.0.0",
"description": "This repository is a lightweight, fully autonomous operating system for building and scaling a one-person software company.",
"main": "index.js",
"type": "module",
"directories": {
"doc": "docs"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "biome check .",
"format": "biome format --write .",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"eval:ast": "node scripts/ast_validator.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dc1014/project-harness.git"
},
"author": "Daniel Casper",
"license": "ISC",
"dependencies": {
"@fontsource-variable/inter": "^5.2.8",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.360.0",
"radix-ui": "^1.4.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"shadcn": "^4.4.0",
"tailwind-merge": "^3.5.0",
"tailwindcss-animate": "^1.0.7",
"tw-animate-css": "^1.4.0"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.2",
"@biomejs/biome": "^1.6.0",
"@playwright/test": "^1.42.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.19",
"happy-dom": "^20.9.0",
"jsdom": "^29.0.2",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.1",
"typescript": "^5.2.2",
"vite": "^5.2.0",
"vitest": "^1.4.0"
}
}