-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.08 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.08 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"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-mac-arm64-dist": "pkg package.json -t node20-macos-arm64 --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.13",
"async-mutex": "^0.4.1",
"body-parser": "^1.20.2",
"chia-datalayer": "^2.0.20",
"chia-root-resolver": "^1.0.0",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-form-data": "^3.0.1",
"express-joi-validation": "^5.0.1",
"http-proxy-middleware": "^2.0.7",
"joi": "^17.13.3",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"superagent": "^10.2.3",
"supertest": "^7.1.4",
"toad-scheduler": "^3.0.1",
"unzipper": "^0.10.14",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"@yao-pkg/pkg": "^6.9.0",
"chai": "^4.5.0",
"cors": "^2.8.5",
"jest": "^30.0.5",
"nock": "^13.5.6",
"proxyquire": "^2.1.3",
"sinon": "^21.0.1",
"sinon-chai": "^3.7.0"
}
}