-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 811 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 811 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
28
29
{
"name": "netwave",
"version": "0.1.0",
"private": true,
"description": "Turn your network traffic into live generative music.",
"type": "module",
"workspaces": [
"server",
"client"
],
"scripts": {
"dev": "concurrently \"npm run dev --prefix server\" \"npm run dev --prefix client\"",
"dev:server": "npm run dev --prefix server",
"dev:client": "npm run dev --prefix client",
"build": "npm run build --prefix server && npm run build --prefix client"
},
"repository": {
"type": "git",
"url": "git+https://github.com/florextech/NetWave.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/florextech/NetWave/issues"
},
"homepage": "https://github.com/florextech/NetWave#readme",
"devDependencies": {
"concurrently": "^9.2.1"
}
}