-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.83 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
{
"name": "domopaque",
"version": "0.1.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"test": "jest --testTimeout=10000",
"start": "npm run tsc && node dist/index.js",
"build": "tsc",
"tsc": "tsc",
"migrate": "ts-node ./node_modules/typeorm/cli.js migration:run",
"migrate-revert": "ts-node ./node_modules/typeorm/cli.js migration:revert"
},
"repository": {
"type": "git",
"url": "git+https://github.com/antoniodalessio/domopaque.git"
},
"keywords": [
"domotica",
"building",
"automation"
],
"author": "Antonio D'Alessio",
"license": "ISC",
"bugs": {
"url": "https://github.com/antoniodalessio/domopaque/issues"
},
"homepage": "https://github.com/antoniodalessio/domopaque#readme",
"dependencies": {
"colors": "^1.4.0",
"cookie-parser": "^1.4.4",
"cron": "^1.7.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-access-token": "^1.0.3",
"fcm-node": "^1.5.2",
"inversify": "^5.0.1",
"mdns": "^2.5.1",
"module-alias": "^2.2.2",
"mongoose": "^5.12.7",
"node-cron": "^2.0.3",
"node-googlehome": "0.0.7",
"npm": "^6.13.4",
"pg": "^7.14.0",
"rebuild": "^0.1.2",
"socket.io": "^2.3.0",
"sudo": "^1.0.3",
"ts-node": "^8.5.4",
"typeorm": "^0.2.21",
"typescript": "^3.7.3"
},
"devDependencies": {
"@types/jasmine": "^3.5.0",
"@types/jest": "^24.0.23",
"@types/mongoose": "^5.10.5",
"@types/node": "^12.12.17",
"axios": "^0.21.1",
"babel-plugin-module-resolver": "^3.2.0",
"jest": "^24.9.0",
"reflect-metadata": "^0.1.13",
"supertest": "^4.0.2",
"ts-jest": "^24.2.0"
},
"_moduleAliases": {
"@controller": "dist/controller",
"@routes": "dist/routes",
"@interface": "dist/interface",
"@model": "dist/model",
"@helpers": "dist/helpers"
}
}