-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·58 lines (58 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·58 lines (58 loc) · 1.75 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
{
"name": "hal-module-builder",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"dev:live": "node scripts/dev-live.mjs",
"bridge": "node scripts/agent-bridge.mjs",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "jest",
"test:bridge": "node --test scripts/agent-bridge.test.mjs",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"format": "prettier --write src",
"format:check": "prettier --check src",
"type-check": "tsc --noEmit",
"quality": "npm run type-check && npm run lint && npm run format:check",
"prepare": "husky"
},
"dependencies": {
"lucide-react": "^1.24.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^7.9.2",
"ws": "^8.21.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^29.5.8",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^8.41.0",
"@typescript-eslint/parser": "^8.41.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.16",
"eslint": "^9.34.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"husky": "^9.1.7",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^16.1.6",
"postcss": "^8.4.33",
"prettier": "^3.6.2",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2",
"vite": "^5.0.8"
}
}