-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.16 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "rpi-ws281x-server",
"version": "1.0.0",
"description": "node.js service that allows to control ws281x LED strip",
"main": "src/index.js",
"scripts": {
"start": "nodemon -r esm src/index.js --env=development | pino-pretty -c -t -l ",
"build": "npm i --no-save rpi-ws281x@^1.0.34 && npm run build-dev",
"build-dev": "parcel build src/index.js --out-file rpi-ws281x-server.js --target=node --bundle-node-modules --no-source-maps",
"test": "jest -c jest.config.json",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/quarties/rpi-ws281x-server.git"
},
"keywords": [
"nodejs",
"node",
"fastify",
"ws281x",
"ws281b",
"led",
"server"
],
"author": "Michał 'Quarties' Sypko <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/quarties/rpi-ws281x-server/issues"
},
"homepage": "https://github.com/quarties/rpi-ws281x-server#readme",
"dependencies": {
"command-line-args": "^5.1.1",
"fastify": "^3.4.1",
"fastify-basic-auth": "^1.0.1",
"fastify-healthcheck": "^3.0.0",
"fastify-helmet": "^5.0.3",
"fastify-plugin": "^2.3.4",
"fastify-sensible": "^3.0.1",
"fastify-swagger": "^3.3.0",
"make-promises-safe": "^5.1.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"babel-jest": "^26.3.0",
"bufferutil": "^4.0.1",
"canvas": "^2.6.1",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-jest": "^24.0.2",
"eslint-plugin-jsdoc": "^30.6.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"esm": "^3.2.25",
"husky": "^4.3.0",
"jest": "^26.4.2",
"lodash.isequal": "^4.5.0",
"nodemon": "^2.0.4",
"parcel-bundler": "^1.12.4",
"pino-pretty": "^4.2.1",
"prettier": "^2.1.2",
"typescript": "^4.0.3",
"utf-8-validate": "^5.0.2"
},
"peerDependencies": {
"rpi-ws281x": "^1.0.34"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint -- --fix",
"pre-push": "npm run lint && npm run test"
}
}
}