forked from andrei-tatar/nora-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.98 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
{
"name": "node-red-google-home",
"version": "1.0.0",
"description": "",
"engines": {
"node": "10"
},
"main": "build/index.js",
"scripts": {
"build": "tsc",
"schema-sync": "typescript-json-schema src/socket/types.ts SyncDevices --noExtraProps --required --strictNullChecks > schema/sync.json",
"schema-update": "typescript-json-schema src/socket/types.ts UpdateDevices --noExtraProps --required --strictNullChecks > schema/update.json",
"schema": "npm run schema-sync && npm run schema-update",
"copyhtml": "cp src/http/controllers/*.html build/http/controllers/",
"heroku-postbuild": "npm run build && npm run copyhtml && npm run schema",
"start": "node build/index.js",
"lint": "tslint --project .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@andrei-tatar/ts-ioc": "^1.0.3",
"ajv": "^6.12.2",
"bcrypt": "^3.0.3",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"express": "^4.17.1",
"firebase-admin": "^6.5.1",
"firebase-functions": "^3.6.1",
"firebaseui": "^4.5.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"morgan": "^1.10.0",
"node-fetch": "^2.6.0",
"pg": "^7.18.2",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.5.5",
"socket.io": "^2.3.0",
"tslib": "^1.11.0",
"uuid": "^3.4.0"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.6",
"@types/express-serve-static-core": "^4.17.5",
"@types/jsonwebtoken": "^8.3.9",
"@types/lodash": "^4.14.150",
"@types/morgan": "^1.7.37",
"@types/node": "^10.17.21",
"@types/node-fetch": "^2.5.7",
"@types/pg": "^7.14.3",
"@types/socket.io": "^2.1.4",
"@types/uuid": "^3.4.9",
"ts-node": "^8.9.1",
"tslint": "^5.20.1",
"typescript": "^3.8.3",
"typescript-json-schema": "^0.34.0"
}
}