-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.58 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
{
"name": "dig-propagation-server",
"version": "0.0.1-alpha.143",
"description": "",
"type": "commonjs",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"dig": "./dist/index.js"
},
"scripts": {
"build": "rm -rf dist && tsc && npm run postbuild",
"postbuild": "copyfiles -u 1 \"src/**/*.crt\" \"src/**/*.key\" dist",
"start": "ts-node src/index.ts",
"dev": "set DIG_USERNAME=1234&& set DIG_PASSWORD=1234&& ts-node src/index.ts",
"server": "ts-node src/server.ts",
"test": "mocha -r ts-node/register tests.ts",
"prepare-release": "bash ./scripts/release.sh",
"docker:build:local": "docker build -t dig-propagation-server:local ."
},
"author": "",
"license": "ISC",
"files": [
"dist",
"README.md",
"LICENSE"
],
"dependencies": {
"@dignetwork/datalayer-driver": "^0.1.28",
"@dignetwork/dig-sdk": "^0.0.1-alpha.194",
"async-mutex": "^0.5.0",
"busboy": "^1.6.0",
"express": "^4.19.2",
"express-rate-limit": "^7.4.0",
"fs-extra": "^11.2.0",
"node-cache": "^5.1.2",
"request-ip": "^3.3.0",
"tmp": "^0.2.3",
"toad-scheduler": "^3.0.1",
"uuidv4": "^6.2.13"
},
"devDependencies": {
"@types/busboy": "^1.5.4",
"@types/express": "^4.17.21",
"@types/fs-extra": "^11.0.4",
"@types/lodash": "^4.17.10",
"@types/mocha": "^10.0.7",
"@types/node": "^22.1.0",
"@types/request-ip": "^0.0.41",
"@types/tmp": "^0.2.6",
"copyfiles": "^2.4.1",
"mocha": "^10.7.0",
"standard-version": "^9.5.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}