-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 2.34 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
74
75
76
77
78
79
80
81
82
83
{
"name": "casper-java",
"version": "1.0.0",
"description": "一个简单的koa+typescript+typeorm的起手式",
"tags": [
"orm",
"typescript",
"koa"
],
"scripts": {
"start": "nodemon",
"build": "rm -rf dist && tsc",
"pro": "npx pm2 start ecosystem.config.js --env production",
"restart": "pm2 restart ecosystem.config.js --env production",
"stop": "npx pm2 stop ecosystem.config.js"
},
"dependencies": {
"@ethersproject/bignumber": "^5.0.8",
"@ethersproject/bytes": "^5.0.5",
"@ethersproject/constants": "^5.0.5",
"@open-rpc/client-js": "^1.6.2",
"axios": "^0.21.1",
"blakejs": "^1.1.0",
"casper-client-sdk": "^1.0.40",
"dotenv": "^8.2.0",
"ethereum-cryptography": "^0.1.3",
"humanize-duration": "^3.24.0",
"jsbi": "^3.1.2",
"key-encoder": "^2.0.3",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-router": "^7.4.0",
"nodemon": "^1.19.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.5.3",
"tweetnacl-ts": "^1.0.3",
"tweetnacl-util": "^0.15.0",
"typedjson": "^1.6.0-rc2",
"webpack": "^5.24.3"
},
"devDependencies": {
"@types/koa": "^2.0.48",
"@types/koa-bodyparser": "^4.2.2",
"@types/koa-router": "^7.0.40",
"@types/node": "^12.0.0",
"nodemon": "^1.19.0",
"pm2": "^3.5.0",
"ts-node": "^8.1.0",
"tsconfig-paths": "^3.8.0",
"typescript": "^3.4.5",
"@types/chai": "^4.1.7",
"@types/express": "^4.17.0",
"@types/humanize-duration": "^3.18.1",
"@types/mocha": "^5.2.7",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"assert": "^2.0.0",
"buffer": "^6.0.3",
"chai": "^4.2.0",
"concurrently": "^6.0.0",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-jsdoc": "^32.2.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"gh-pages": "^3.1.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"minimist": ">=1.2.3",
"mocha": "^6.2.3",
"nyc": "^15.0.1",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"ts-loader": "^8.0.17",
"ts-protoc-gen": "^0.10.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.17.8",
"webpack-cli": "^4.5.0",
"webpack-node-externals": "^2.5.2"
}
}