-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 954 Bytes
/
package.json
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
{
"name": "drumline-lib",
"version": "0.0.3",
"description": "Common modules for drumline, shared between server and client",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/chrisrude/drumline.git"
},
"author": "Christopher Rude <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/chrisrude/drumline/issues"
},
"homepage": "https://github.com/chrisrude/drumline#readme",
"engines": {
"npm": ">=8.19.2 <10.0.0",
"node": ">=18.12.1 <19.0.0"
},
"scripts": {
"postinstall": "cd drumline-lib; npm install; cd ../drumline-server; npm install",
"build": "cd drumline-lib; npm run build; cd ../drumline-server; npm run build",
"clean": "cd drumline-lib; npm run clean; cd ../drumline-server; npm run clean",
"start": "cd ./drumline-server && node dist/index.mjs"
}
}