forked from algirdasc/ICantBelieveItsNotValetudo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1018 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
27
28
29
30
31
32
33
34
35
36
{
"name": "i-cant-believe-its-not-valetudo",
"version": "2022.05.0",
"dependencies": {
"@napi-rs/canvas": "0.1.41",
"compression": "1.7.4",
"express": "4.18.1",
"jimp": "0.22.8",
"mqtt": "4.3.7"
},
"engines": {
"node": ">=16"
},
"devDependencies": {
"@types/compression": "1.7.2",
"@types/express": "4.17.3",
"@types/node": "16.11.1",
"eslint": "8.16.0",
"eslint-plugin-jsdoc": "39.3.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-regexp": "1.7.0",
"eslint-plugin-sort-keys-fix": "1.1.2",
"eslint-plugin-sort-requires": "git+https://[email protected]/Hypfer/eslint-plugin-sort-requires.git#2.1.1",
"mocha": "10.0.0",
"should": "13.2.3",
"typescript": "4.6.4"
},
"scripts": {
"start": "node app.js",
"lint": "eslint .",
"lint_fix": "eslint . --fix",
"ts-check": "tsc -p jsconfig.json",
"test": "mocha \"test/**/*_spec.js\"",
"prepare_commit": "npm run lint_fix && npm run ts-check && npm run test"
}
}