forked from zwave-js/firmware-updates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.67 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
{
"name": "@zwave-js/firmware-updates",
"version": "0.0.1",
"description": "The firmware update service for Z-Wave JS",
"main": "build/server.js",
"repository": "https://github.com/zwave-js/firmware-updates",
"author": "Dominic Griesel <dominic.griesel@nabucasa.com>",
"license": "MIT",
"scripts": {
"b": "tsc -p tsconfig.build.json",
"build": "yarn run b && ts-node src/maintenance/generateIndex",
"clean": "yarn run b --clean",
"watch": "yarn run b --watch --pretty",
"lint": "eslint .",
"dev": "nodemon src/server.ts",
"start": "node build/server.js",
"test:ci": "ava",
"test": "yarn test:ci --watch"
},
"dependencies": {
"@fastify/helmet": "^9.1.0",
"@fastify/rate-limit": "^7.0.0",
"dotenv": "^16.0.1",
"fastify": "^4.2.0",
"fastify-plugin": "^4.0.0",
"json-logic-js": "^2.0.2",
"json5": "^2.2.1",
"semver": "^7.3.7",
"zod": "^3.17.3"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/eslint": "^8.4.3",
"@types/json-logic-js": "^2.0.1",
"@types/node": "^18.0.0",
"@types/prettier": "^2",
"@types/semver": "^7.3.10",
"@types/source-map-support": "^0.5.4",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"ava": "^4.3.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.1.0",
"nodemon": "^2.0.18",
"prettier": "^2.7.1",
"prettier-plugin-organize-imports": "^3.0.0",
"supertest": "^6.2.3",
"ts-node": "^10.8.1",
"typescript": "~4.7.4",
"zod-to-json-schema": "^3.17.0"
},
"packageManager": "yarn@3.2.1"
}