-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·50 lines (50 loc) · 1.41 KB
/
package.json
File metadata and controls
executable file
·50 lines (50 loc) · 1.41 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "draw-on-led",
"version": "1.0.0",
"description": "drawing on the rpi-LED-Display",
"main": "dist/index.js",
"author": "Jan Fanslau",
"license": "MIT",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-changes": "echo 'Source will rebuild on changes' && nodemon --config nodemon.build.json",
"clean": "rm -rf dist",
"sync-changes": "echo 'Changes will be pushed to Raspberry Pi' && nodemon --config nodemon.sync.json"
},
"dependencies": {
"axios": "^1.4.0",
"bindings": "^1.5.0",
"canvas": "^2.11.2",
"dayjs": "^1.11.8",
"dotenv": "^16.3.1",
"esbuild": "0.18.0",
"gl-matrix": "^3.4.3",
"jimp": "^0.22.8",
"moment": "^2.29.4",
"momentjs": "^2.0.0",
"node-addon-api": "^3.0.0",
"rpi-led-matrix": "^1.14.0",
"ts-ics": "^1.6.5"
},
"devDependencies": {
"@types/color": "^3.0.1",
"@types/node": "^14.18.48",
"@types/prompts": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"chalk": "^4.1.0",
"color": "^3.1.2",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"globby": "^11.0.1",
"nodemon": "^2.0.4",
"ora": "^5.0.0",
"prettier": "^2.6.2",
"prompts": "^2.3.2",
"rimraf": "^3.0.2",
"rsync": "^0.6.1",
"ts-node": "^8.10.2",
"typescript": "^4.6.3"
}
}