-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 975 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
{
"name": "iot-api-mqtt",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "node ./build/www/server.js",
"build": "tsc",
"dev": "ts-node-dev --respawn --transpile-only --no-notify ./www/server.ts",
"lint": "eslint . --ext=.ts --fix"
},
"dependencies": {
"@google-cloud/pubsub": "^2.2.0",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"express": "~4.16.1",
"morgan": "~1.9.1"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.7",
"@types/morgan": "^1.9.1",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"eslint": "^7.4.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"ts-node-dev": "^1.0.0-pre.52",
"typescript": "^3.9.7"
}
}