-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 2 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
58
59
60
61
62
63
64
65
66
{
"name": "climate-tokenization-engine",
"version": "1.3.23",
"bin": "./src/server.js",
"description": "",
"main": "proxy.js",
"engines": {
"node": ">=20.16"
},
"scripts": {
"test": "jest --forceExit",
"test-ci": "jest --ci",
"start": "node --no-warnings src/server.js",
"prepare-binary": "rm -rf dist && mkdir dist",
"create-win-x64-dist": "pkg package.json -t node20-win-x64 --out-path dist",
"create-mac-x64-dist": "pkg package.json -t node20-macos-x64 --out-path dist",
"create-linux-x64-dist": "pkg package.json -t node20-linux-x64 --out-path dist",
"create-linux-arm64-dist": "pkg package.json -t node20-linux-arm64 --out-path dist"
},
"pkg": {
"scripts": "package.json",
"assets": "package.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Chia-Network/climate-tokenization-engine.git"
},
"author": "Chia Network Inc",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Chia-Network/climate-tokenization-engine/issues"
},
"homepage": "https://github.com/Chia-Network/climate-tokenization-engine#readme",
"dependencies": {
"@chia-carbon/core-registry-config": "^1.0.4",
"@chia-carbon/core-registry-logger": "^1.0.12",
"async-mutex": "^0.4.1",
"body-parser": "^1.20.2",
"chia-datalayer": "^2.0.14",
"chia-root-resolver": "^1.0.0",
"dotenv": "^16.4.5",
"express": "^4.21.2",
"express-form-data": "^2.0.23",
"express-joi-validation": "^5.0.1",
"http-proxy-middleware": "^2.0.7",
"joi": "^17.12.1",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"superagent": "^8.1.2",
"supertest": "^6.3.4",
"toad-scheduler": "^3.0.1",
"unzipper": "^0.10.14",
"winston": "^3.11.0",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"@yao-pkg/pkg": "^5.12.0",
"chai": "^4.4.1",
"cors": "^2.8.5",
"jest": "^27.5.1",
"nock": "^13.5.3",
"proxyquire": "^2.1.3",
"sinon": "^11.1.2",
"sinon-chai": "^3.7.0"
}
}