-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.27 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
77
78
79
80
81
82
83
84
85
86
87
{
"name": "air-quality",
"version": "0.1.0",
"main": "src/index.ts",
"description": "Backend for air-quality",
"scripts": {
"lint": "eslint src/* --ext .ts --fix",
"service": "nodemon",
"start": "DEBUG=AirQuality:* ts-node ./src/index",
"release": "standard-version",
"test:local": "jest --setupFiles dotenv/config --ci -i",
"test:ci": "jest --ci -i",
"pub": "nodemon --exec \"DEBUG=WQ:* ts-node -r dotenv/config scripts/pub.ts\""
},
"author": "AnthonyLzq <[email protected]>",
"license": "MIT",
"devDependencies": {
"@jest/types": "29.6.3",
"@types/debug": "4.1.8",
"@types/jest": "29.5.4",
"@types/node": "20.5.9",
"@types/node-cron": "3.0.8",
"@typescript-eslint/eslint-plugin": "6.5.0",
"@typescript-eslint/parser": "6.5.0",
"dotenv": "16.3.1",
"eslint": "8.48.0",
"eslint-config-prettier": "9.0.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-jest": "27.2.3",
"eslint-plugin-n": "16.0.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-promise": "6.1.1",
"jest": "29.6.4",
"jest-mock-extended": "3.0.5",
"jest-unit": "0.0.2",
"nodemon": "3.0.1",
"prettier": "3.0.3",
"prisma": "5.2.0",
"reflect-metadata": "0.1.13",
"ts-jest": "29.1.1",
"ts-loader": "9.4.4",
"ts-node": "10.9.1",
"tsconfig-paths": "4.2.0",
"tsconfig-paths-webpack-plugin": "4.1.0",
"typescript": "5.2.2"
},
"dependencies": {
"@prisma/client": "5.2.0",
"debug": "4.3.4",
"firebase-admin": "11.10.1",
"mqtt": "5.0.4",
"node-cron": "3.0.2",
"socket.io": "4.7.2",
"zod": "3.22.2"
},
"nodemonConfig": {
"watch": [
".env",
"src"
],
"ext": "ts",
"ignore": [
"src/**/*.test.ts"
],
"exec": "DEBUG=AirQuality:* npx ts-node -r dotenv/config ./src/index"
},
"engines": {
"node": ">=16",
"pnpm": ">=7"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AnthonyLzq/air-quality.git"
},
"keywords": [
"mqqt"
],
"bugs": {
"url": "https://github.com/AnthonyLzq/air-quality/issues"
},
"homepage": "https://github.com/AnthonyLzq/air-quality#readme"
}