-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 784 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 784 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "neocraft",
"private": true,
"description": "Cross-platform Minecraft server control panel",
"scripts": {
"dev": "node scripts/dev.mjs",
"build": "node scripts/build.mjs",
"dev:daemon": "cd daemon && cargo run",
"dev:server": "cd server && npm run dev",
"dev:frontend": "cd frontend && npm run dev",
"build:server": "cd server && npm run build",
"build:frontend": "cd frontend && npm run build",
"build:daemon": "cd daemon && cargo build --release",
"test": "npm run test:daemon && npm run test:server && npm run test:frontend",
"test:daemon": "cd daemon && cargo test",
"test:server": "cd server && npm test",
"test:frontend": "cd frontend && npm test"
},
"devDependencies": {
"concurrently": "^10.0.0"
}
}