-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.53 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.53 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
{
"name": "craftcommand",
"private": true,
"version": "1.13.2",
"license": "AGPL-3.0-only",
"author": "Extroos",
"scripts": {
"dev": "concurrently \"npm run dev --prefix frontend\" \"npm run start --prefix backend\" --names \"FRONT,BACK\" --prefix-colors \"cyan,magenta\" --kill-others",
"lint": "npm run lint --prefix frontend && npm run lint --prefix backend",
"build": "npm run build --prefix frontend",
"build:backend": "npm run build --prefix backend",
"build:agent": "npm run build --prefix agent",
"build:all": "npm run build && npm run build:backend && npm run build:agent",
"preview": "npm run preview --prefix frontend",
"start:backend": "npm run start --prefix backend",
"start:all": "npm run dev"
},
"dependencies": {
"@types/fs-extra": "^11.0.4",
"@types/react-router-dom": "^5.3.3",
"framer-motion": "^11.0.0",
"fs-extra": "^11.3.3",
"jwt-decode": "^4.0.0",
"lucide-react": "^0.563.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.13.0",
"socket.io-client": "^4.8.3"
},
"devDependencies": {
"@types/axios": "^0.9.36",
"@types/dotenv": "^6.1.1",
"@types/node": "^22.14.0",
"@vitejs/plugin-react": "^5.0.0",
"autoprefixer": "^10.4.23",
"axios": "^1.13.5",
"concurrently": "^9.2.1",
"dotenv": "^17.2.4",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.17",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "~5.8.2",
"vite": "^6.2.0"
}
}