-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.02 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
{
"name": "lightwebctrl",
"version": "1.0.0",
"engines": {
"node": ">=18.0.0"
},
"main": "server.js",
"license": "MIT",
"dependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.11.17",
"body-parser": "^1.20.2",
"ejs": "^3.1.9",
"express": "^4.18.2",
"mqtt": "^5.3.5",
"nodemon": "^3.0.3",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-plugin-import": "^2.25.2"
},
"scripts": {
"start": "ts-node-dev --respawn --transpile-only ./src/index.ts",
"dev": "nodemon ./src/index.ts",
"build": "tsc -p .",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ext .ts"
}
}