-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.06 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.06 KB
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
{
"name": "fadecandy-raspi-p5",
"version": "1.0.0",
"description": "Starting template to control fadecandy server on Raspberry Pi 4 using p5js and nodejs",
"main": "src/main.js",
"type": "commonjs",
"repository": "https://github.com/kyeshmz/fadecandy-raspi-p5.git",
"author": "kkshmz <kyeshimizu@gmail.com>",
"license": "MIT",
"scripts": {
"start": "ts-node ./src/examples/sketch.ts",
"server": "ts-node ./src/examples/server.ts",
"deploy": "pm2 start ts-node -- --type-check ./tsconfig.json ./src/examples/server.ts",
"pm2:install": "pm2 install pm2-slack && pm2 set pm2-slack:slack_url SLACKURL",
"monitor": "pm2 monit",
"pm2:config": "pm2 set pm2-slack:exit true && pm2 set pm2-slack:restart true"
},
"dependencies": {
"canvas": "^2.7.0",
"jsdom": "^16.5.1",
"osc-js": "^2.1.2",
"p5": "^1.3.0",
"pm2": "^4.5.5",
"pm2-slack": "^1.1.0"
},
"devDependencies": {
"@types/jsdom": "^16.2.9",
"@types/node": "^14.14.36",
"@types/p5": "^0.9.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
}
}