-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.19 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.19 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
{
"name": "internet-of-vehicles-poc-backend",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "node bin/server.ts",
"dev": "./node_modules/.bin/nodemon -e ts,tsx --exec ts-node bin/server.ts",
"prd": "pm2 start bin/server",
"test": "echo \"Error: no test specified\" && exit 0",
"build": "tsc"
},
"dependencies": {
"@types/koa": "^2.11.3",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-json": "^2.0.18",
"@types/koa-logger": "^3.1.1",
"@types/koa-router": "^7.4.1",
"@types/koa-views": "^2.0.4",
"@types/sha256": "^0.2.0",
"awesome-typescript-loader": "^5.2.1",
"debug": "^4.1.1",
"fabric-network": "^2.2.0",
"fs": "^0.0.1-security",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-convert": "^1.2.0",
"koa-json": "^2.0.2",
"koa-logger": "^3.2.0",
"koa-onerror": "^4.1.0",
"koa-router": "^9.4.0",
"koa-static": "^5.0.0",
"koa-views": "^6.2.0",
"moment": "^2.27.0",
"pug": "^3.0.0",
"salted-sha256": "^1.0.0",
"sha256": "^0.2.0",
"source-map-loader": "^1.0.1",
"tsc": "^1.20150623.0"
},
"devDependencies": {
"nodemon": "^2.0.4",
"typescript": "^4.0.2"
}
}