-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.51 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "ledcontroller",
"version": "1.0.0",
"description": "a controller program to controll my led strip(s)",
"main": "index.js",
"scripts": {
"start": "npm run run",
"setup": "npm i && cd app && npm i --legacy-peer-deps && npm run build && cd .. && npm run kill",
"kill": "sudo killall pigpiod || echo 'no process stopped' && exit",
"run": "tsc && bash ./util/copyBuild.sh && sudo node dist/index.js ",
"runLog": "tsc && bash ./util/copyBuild.sh && sudo node dist/index.js > debug.log",
"runNoLeds": "tsc && bash ./util/copyBuild.sh && sudo node dist/index.js --noLeds",
"runWin": "tsc && pwsh ./util/copyBuild.ps1 && node --inspect dist/index.js --noLeds --refreshRate 100",
"runBackground": "nohup sudo node dist/ >> app.log 2>&1 &"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NilsGke/ledController.git"
},
"author": "Nils Goeke",
"license": "ISC",
"bugs": {
"url": "https://github.com/NilsGke/ledController/issues"
},
"homepage": "https://github.com/NilsGke/ledController#readme",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"onoff": "^6.0.3",
"pigpio": "^3.3.1",
"react-device-detect": "^2.2.2",
"ws": "^8.8.1"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/node": "^18.0.6",
"@types/node-static": "^0.7.7",
"@types/ws": "^8.5.3",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
}
}