-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 859 Bytes
/
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
{
"name": "nighthawk",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon src/index.ts",
"build": "tsc -W",
"test": "nyc mocha --require ts-node/register test/**/*.ts"
},
"keywords": [],
"author": "Rohan D. Shukla",
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.13",
"balena-sdk": "^16.20.5",
"express": "^4.18.1",
"joi": "^17.6.0",
"pg": "^8.7.3",
"reflect-metadata": "^0.1.13",
"roslib": "^1.3.0",
"socket.io": "^4.5.1",
"typeorm": "^0.3.6",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.35",
"@types/uuid": "^8.3.4",
"chai": "^4.3.6",
"mocha": "^10.0.0",
"nodemon": "^2.0.16",
"nyc": "^15.1.0",
"ts-node": "^10.8.0"
}
}