-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 768 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 768 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
{
"name": "gota-react-project",
"description": "Graphical Over The Aire Reactive Hardware Updater",
"version": "0.0.1",
"private": true,
"scripts": {
"check-tools": "bash scripts/check-tools.sh",
"start": "concurrently \"npm run start --prefix frontend\" \"npm run start-backend\"",
"start-backend": "cd backend && go run main.go",
"build": "npm run build --prefix frontend",
"test": "npm run test --prefix frontend",
"lint": "npm run lint --prefix frontend"
},
"devDependencies": {
"concurrently": "^8.2.2"
},
"dependencies": {},
"engines": {
"node": "20 || 22",
"npm": "10 || 11"
},
"repository": {
"type": "git",
"url": "https://github.com/your-org/gota-react.git"
},
"license": "UNLICENSED"
}