-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.75 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.75 KB
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
{
"name": "farmlab-api",
"version": "1.1.0",
"description": "",
"main": "app.js",
"scripts": {
"test": "mocha test/*_spec.js --exit",
"start": "nodemon --watch '**/*.ts' --ignore 'node_modules' --exec 'ts-node' index.ts",
"setup": "cd keys && sh generate.sh",
"docker:deploy": "docker build -t registry.mira.systems/farmlab/mqtt-api:latest . && docker push registry.mira.systems/farmlab/mqtt-api:latest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jp19-lafa/API.git"
},
"author": "Matthias Willemsen",
"license": "MIT",
"bugs": {
"url": "https://github.com/jp19-lafa/API/issues"
},
"homepage": "https://github.com/jp19-lafa/API#readme",
"dependencies": {
"@sentry/node": "^5.13.1",
"bcrypt": "^3.0.8",
"config": "^3.3.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-jwt": "^5.3.1",
"express-validator": "^6.4.0",
"http-errors": "^1.7.3",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.2",
"mongoose": "^5.9.3",
"mqtt": "^3.0.0",
"rxjs": "^6.5.4",
"uuid": "^3.4.0",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/config": "0.0.36",
"@types/express": "^4.17.3",
"@types/express-jwt": "^0.0.42",
"@types/http-errors": "^1.6.3",
"@types/jsonwebtoken": "^8.3.8",
"@types/module-alias": "^2.0.0",
"@types/mongoose": "^5.7.3",
"@types/mqtt": "^2.5.0",
"@types/node": "^12.12.29",
"@types/uuid": "^3.4.8",
"mocha": "",
"nodemon": "",
"supertest": "",
"ts-node": "",
"typescript": ""
},
"_moduleAliases": {
"@root": ".",
"@app": "./app",
"@routes": "./routes",
"@modules": "./modules",
"@models": "./models",
"@database": "./db"
}
}