-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.2 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.2 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
45
46
47
{
"name": "firefly-dataexchange",
"version": "1.0.0",
"description": "FireFly Data Exchange",
"main": "index.js",
"scripts": {
"clean": "rimraf ./build",
"copy-swagger": "cp ./src/swagger.yaml ./build",
"build": "npm run clean && tsc && npm run copy-swagger",
"start:dev": "nodemon",
"start": "node build/index.js",
"dev": "ts-node src/index.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/kaleido-io/firefly-dataexchange-https"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"ajv": "^8.5.0",
"axios": "^0.21.1",
"bunyan": "^1.8.15",
"busboy": "^0.3.1",
"express": "^4.17.1",
"form-data": "^4.0.0",
"jsrsasign": "^10.3.0",
"swagger-ui-express": "^4.1.6",
"ts-node": "^9.1.1",
"typescript": "^4.2.4",
"uuid": "^8.3.2",
"ws": "^7.4.6",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@types/bunyan": "^1.8.6",
"@types/busboy": "^0.2.3",
"@types/express": "^4.17.11",
"@types/jsrsasign": "^8.0.12",
"@types/node": "^15.0.3",
"@types/swagger-ui-express": "^4.1.2",
"@types/uuid": "^8.3.0",
"@types/ws": "^7.4.4",
"@types/yamljs": "^0.2.31"
}
}