-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 843 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 843 Bytes
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": "otf-request-proxy",
"version": "0.2.0",
"author": "Matthew Oslan",
"contributors": [
"Matthew Oslan",
"Andrew Friedman"
],
"license": "GPL-3.0",
"description": "OpenThings request forwarding server",
"scripts": {
"build": "node build.mjs",
"start": "node dist/index.cjs",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"mysql": "^2.18.1",
"pino": "^9.2.0",
"pino-http": "^10.1.0",
"ws": "^8.17.1"
},
"devDependencies": {
"esbuild": "^0.21.5",
"@types/body-parser": "^1.19.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/mysql": "^2.15.26",
"@types/node": "^20.14.8",
"@types/ws": "^8.5.10",
"typescript": "^5.5.2"
}
}