-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
55 lines (55 loc) · 1.47 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
{
"name": "@hyperaudio/api",
"version": "1.0.0",
"description": "api.hyperaud.io",
"license": "MIT",
"homepage": "http://hyperaud.io",
"authors": [
"Laurian Gridinoc <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/hyperaudio/ha-api"
},
"private": true,
"scripts": {
"start:local": "node index.js",
"start:watch": "nodemon index.js",
"build": "tsc",
"start": "node dist/server.js"
},
"dependencies": {
"@hyperaudio/transcript-parser": "0.0.6",
"@hyperaudio/transcript-renderer": "hyperaudio/transcript-renderer",
"@nestjs/common": "^4.5.10",
"@nestjs/core": "^4.5.10",
"@nestjs/microservices": "^4.5.10",
"@nestjs/testing": "^4.5.10",
"@nestjs/websockets": "^4.5.10",
"@types/passport-jwt": "^3.0.0",
"@types/passport-local-mongoose": "^4.0.11",
"axios": "^0.17.1",
"body-parser": "^1.18.2",
"dotenv": "^4.0.0",
"jsdom": "^11.4.0",
"jsonwebtoken": "^8.1.0",
"mandrill-api": "^1.0.45",
"mongoose": "^4.13.1",
"passport": "^0.4.0",
"passport-jwt": "^3.0.1",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^4.4.0",
"redis": "^2.7.1",
"reflect-metadata": "^0.1.10",
"rxjs": "^5.4.0",
"typescript": "^2.5.2",
"urlsafe-base64": "^1.0.0",
"uuid": "^3.1.0"
},
"devDependencies": {
"@types/mongoose": "^4.7.24",
"@types/node": "^8.0.28",
"nodemon": "^1.12.1",
"ts-node": "^3.3.0"
}
}