-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.02 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
{
"name": "bee-r_server",
"version": "1.0.0",
"description": "Bee-r mqtt server",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"test": "rm -rf data; mocha --timeout 65000 -r ts-node/register tests/**/*.test.ts"
},
"author": "Pasquale De Rose <akira.zeta@gmail.com>",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@types/ajv": "^1.0.0",
"@types/chai": "^4.2.21",
"@types/chai-http": "^4.2.0",
"@types/express": "^4.17.13",
"@types/mocha": "^9.0.0",
"@types/node": "^14.14.16",
"@types/redis": "^2.8.28",
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"mocha": "^9.0.3",
"mqtt": "^4.2.8",
"ts-node": "^10.2.0",
"typescript": "^4.1.3"
},
"dependencies": {
"aedes": "^0.44.1",
"ajv": "^8.6.2",
"ajv-formats": "^2.1.0",
"argon2": "^0.28.2",
"class-validator": "^0.13.1",
"express": "^4.17.1",
"password-generator": "^2.3.2",
"sqlite3": "^5.0.2",
"tsmonads": "^2.3.2",
"typeorm": "^0.2.34",
"winston": "^3.3.3"
}
}