forked from Hypfer/ICantBelieveItsNotValetudo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 870 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
37
{
"name": "i-cant-believe-its-not-valetudo",
"version": "2021.12.0",
"dependencies": {
"async": "^3.2.0",
"canvas": "^2.8.0",
"compression": "^1.7.4",
"express": "^4.17.1",
"mqtt": "^4.2.6"
},
"engines": {
"node": ">=14"
},
"devDependencies": {
"@types/compression": "^1.7.0",
"@types/express": "^4.17.3",
"@types/node": "^13.9.1",
"eslint": "^7.22.0",
"eslint-plugin-jsdoc": "^30.2.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-regexp": "^0.5.0",
"eslint-plugin-sort-keys-fix": "^1.1.1",
"eslint-plugin-sort-requires": "^2.1.0",
"pre-commit": "^1.2.2",
"typescript": "^3.8.3"
},
"pre-commit": [
"ts-check",
"lint_fix"
],
"scripts": {
"start": "node app.js",
"lint": "eslint .",
"lint_fix": "eslint . --fix",
"ts-check": "tsc -p jsconfig.json"
}
}