-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.21 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "fablab-api-gateway",
"version": "1.0.0",
"description": "API gateway for fablab access",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "NODE_ENV=development nodemon --watch",
"start": "NODE_ENV=production node ./dist/server.js",
"prod": "NODE_ENV=production npm run build && npm start",
"test": "mocha -r ts-node/register \"./src/**/*.spec.ts\"",
"test-coverage": "nyc mocha -r ts-node/register \"./src/**/*.spec.ts\""
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.spec.ts",
"dist/",
"coverage",
"src/libs/",
"test-helpers.js"
],
"reporter": [
"html",
"text"
],
"all": true
},
"author": "Fabian meyer <[email protected]>",
"license": "MIT",
"engines": {
"node": ">= 11.10.0"
},
"devDependencies": {
"@sinonjs/formatio": "^3.1.0",
"@types/chai": "^4.1.7",
"@types/express": "^4.16.0",
"@types/jsonwebtoken": "^8.3.2",
"@types/mocha": "^5.2.5",
"@types/moment": "^2.13.0",
"@types/mongodb": "^3.1.20",
"@types/node": "^10.12.3",
"@types/sinon": "^5.0.5",
"@types/socket.io": "^2.1.2",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.2.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.9",
"nyc": "^13.3.0",
"prettier": "^1.16.4",
"sinon": "^4.0.0",
"sinon-chai": "^3.2.0",
"supertest": "^3.3.0",
"ts-node": "^8.0.3",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.11.0",
"tslint-config-prettier": "^1.18.0",
"tsutil": "^6.1.1",
"tsutils": "^3.8.0",
"typescript": "^3.3.3"
},
"dependencies": {
"axios": "^0.21.2",
"body-parser": "^1.18.3",
"boom": "^7.3.0",
"bson": "^4.0.2",
"config": "^2.0.1",
"express": "^4.16.4",
"express-async-errors": "^3.1.1",
"http": "0.0.0",
"jsonwebtoken": "^8.4.0",
"moment": "^2.24.0",
"mongodb": "^3.1.13",
"morgan": "^1.9.1",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"socket.io": "^4.4.1",
"socketio-jwt": "^4.6.2",
"url": "^0.11.0",
"xmlrpc": "^1.3.2"
},
"prettier": {
"printWidth": 100,
"singleQuote": true
}
}