-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·73 lines (73 loc) · 2.16 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
67
68
69
70
71
72
73
{
"name": "consul-ic-wallet-server",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"start": "ts-node-dev --respawn --transpile-only src/index.ts",
"copy": "node node_modules/copyfiles/copyfiles -u 1 src/json/*.json ./lib && node node_modules/copyfiles/copyfiles -u 1 src/proto/*.json ./lib && node node_modules/copyfiles/copyfiles package.json ./lib",
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "node node_modules/rimraf/bin lib",
"build": "npm run clean && tsc"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@dfinity/agent": "0.14.1",
"@dfinity/candid": "0.14.1",
"@dfinity/identity": "0.14.1",
"@dfinity/principal": "0.14.1",
"@types/buffer-crc32": "^0.2.2",
"@types/cors": "^2.8.6",
"@types/crypto-js": "^4.1.1",
"@types/hdkey": "^2.0.1",
"@types/koa": "^2.13.5",
"@types/koa-bodyparser": "^4.3.10",
"@types/koa-router": "^7.4.4",
"@types/mocha": "^8.2.3",
"@types/node": "^18.16.19",
"axios": "^0.21.1",
"copyfiles": "^2.4.1",
"crypto-js": "^4.0.0",
"koa": "^2.14.1",
"koa-router": "^7.4.0",
"mocha": "^9.0.2",
"node-fetch": "2.6.7",
"rimraf": "^2.7.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^1.0.0-pre.63",
"typeorm": "^0.3.17"
},
"dependencies": {
"@dfinity/nns": "^0.10.0",
"@helia/dag-json": "^1.0.2",
"@helia/ipns": "^1.1.3",
"@mikro-orm/core": "^5.7.14",
"@mikro-orm/mongodb": "^5.7.14",
"bip39": "^3.0.4",
"buffer": "^6.0.3",
"buffer-crc32": "^0.2.13",
"consul": "^1.1.0",
"cos-nodejs-sdk-v5": "^2.11.19",
"cross-fetch": "^3.1.5",
"express": "^4.18.2",
"gpt3-tokenizer": "^1.1.5",
"hdkey": "^2.0.1",
"helia": "^2.0.1",
"md5": "^2.3.0",
"mysql": "^2.18.1",
"node-consul": "^0.0.1",
"npm": "^9.4.2",
"protobufjs-cli": "^1.0.2",
"redis": "^4.6.8",
"request": "^2.88.2",
"service-worker-router": "^1.7.5",
"sharp": "^0.32.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^4.6.1",
"typescript": "^4.9.4"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/@psychedelic"
}
}