forked from ckb-js/kuai
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 816 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 816 Bytes
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
{
"name": "kuai-mvp-dapp",
"private": true,
"version": "0.0.1-alpha.2",
"scripts": {
"dev": "ts-node src/main.ts",
"build": "tsc",
"build:watch": "tsc -w",
"start:prod": "node ./dist/main.js",
"cp-deploy-file": "cp -r ./contract/deployed_demo ./contract/deployed",
"test": "jest test"
},
"dependencies": {
"@ckb-js/kuai-core": "0.0.1-alpha.2",
"@ckb-js/kuai-io": "0.0.1-alpha.2",
"@ckb-js/kuai-models": "0.0.1-alpha.2",
"@ckb-lumos/base": "0.21.1",
"@ckb-lumos/bi": "0.21.1",
"@ckb-lumos/codec": "0.21.1",
"@ckb-lumos/lumos": "0.21.1",
"@koa/cors": "5.0.0",
"dotenv": "16.3.1",
"http-errors": "2.0.0",
"koa": "2.15.0",
"koa-body": "6.0.1"
},
"devDependencies": {
"@types/koa__cors": "5.0.0",
"typescript": "5.3.3"
}
}