-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·72 lines (72 loc) · 2.18 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
{
"name": "trable",
"version": "0.1.0",
"description": "Trable is an indoor localization app based on Bluetooth Low Energy",
"author": "nickcrd",
"repository": {
"type": "git",
"url": "https://github.com/nickcrd/trable.git"
},
"bin": {
"trable": "./out/cli.js"
},
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "npm run type-check && npm run build:js",
"build:js": "babel src --out-dir out --extensions \".ts,.tsx\" --source-maps inline",
"build:tests": "babel tests --out-dir tests/out --extensions \".ts,.tsx\" --source-maps inline",
"start": "node ./out/app.js",
"test": " mocha -r tests/babel-register.js tests/**/*.ts"
},
"dependencies": {
"@babel/runtime": "^7.10.5",
"@sentry/node": "5.20.1",
"@types/socket.io": "^2.1.11",
"celebrate": "^12.1.2",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"express": "~4.16.1",
"hashids": "^2.2.1",
"http-errors": "~1.6.3",
"joi": "^17.1.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.19",
"mongoose-unique-validator": "^2.0.3",
"morgan": "~1.9.1",
"node-config-ts": "^3.1.0",
"socket.io": "^2.3.0",
"trilat": "^1.0.0",
"ts-node": "^9.0.0",
"typescript": "^3.9.5",
"winston": "^3.3.3"
},
"devDependencies": {
"@babel/cli": "^7.10.3",
"@babel/core": "^7.10.3",
"@babel/node": "^7.10.3",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-transform-runtime": "^7.10.5",
"@babel/preset-env": "^7.10.3",
"@babel/preset-typescript": "^7.10.1",
"@babel/register": "^7.10.3",
"@types/chai": "^4.2.12",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.6",
"@types/joi": "^14.3.4",
"@types/jsonwebtoken": "^8.5.0",
"@types/mocha": "^8.0.3",
"@types/mongoose": "^5.7.27",
"@types/morgan": "^1.9.1",
"@types/passport": "^1.0.3",
"@types/passport-jwt": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"chai": "^4.2.0",
"eslint": "^7.4.0",
"mocha": "^8.0.1"
},
"license": "MIT"
}