forked from pinknetworkx/eosio-contract-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (73 loc) · 2.26 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
{
"name": "eosio-contract-api",
"version": "1.2.8",
"description": "EOSIO Contract API",
"author": "pink.network",
"license": "AGPL-3.0",
"repository": "https://github.com/pinknetworkx/eosio-contract-api",
"scripts": {
"clean": "rimraf ./build/* && rimraf ./logs/*",
"lint": "eslint 'src/**/*.ts'",
"build": "yarn clean && tsc",
"test": "mocha -r ts-node/register test/**/*.test.ts",
"postinstall": "yarn build",
"start:server": "node ./build/bin/server.js",
"start:filler": "node ./build/bin/filler.js",
"start:abiscan": "node ./build/bin/abiscan.js",
"dev:server": "tsc && node --trace-warnings ./build/bin/server.js",
"dev:filler": "tsc && node --trace-warnings ./build/bin/filler.js"
},
"dependencies": {
"atomicassets": "^1.3.1",
"await-lock": "^2.1.0",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"eosjs": "^21.0.4",
"express": "^4.17.1",
"express-rate-limit": "^5.2.6",
"int64-buffer": "^1.0.1",
"ioredis": "^4.27.2",
"node-fetch": "^2.6.1",
"p-queue": "^6.6.2",
"pg": "^8.6.0",
"rate-limit-redis": "^2.1.0",
"redis": "^3.1.2",
"socket.io": "^4.1.1",
"swagger-ui-express": "4.1.4",
"text-encoding": "^0.7.0",
"winston": "^3.3.3",
"ws": "^7.4.6",
"node-worker-threads-pool": "^1.4.3",
"async-exit-hook": "^2.0.1"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/chai": "^4.2.18",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/express-rate-limit": "^5.1.1",
"@types/ioredis": "^4.26.3",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.45",
"@types/node-fetch": "^2.5.10",
"@types/pg": "^7.14.11",
"@types/rate-limit-redis": "^1.7.1",
"@types/redis": "^2.8.28",
"@types/socket.io": "^3.0.2",
"@types/swagger-ui-express": "^4.1.2",
"@types/text-encoding": "^0.0.35",
"@types/elliptic": "^6.4.12",
"@types/ws": "^7.4.4",
"typescript": "^4.2.4",
"ts-loader": "^9.1.2",
"ts-node": "^9.1.1",
"chai": "^4.3.4",
"mocha": "^8.4.0",
"rimraf": "^3.0.2",
"eslint": "^7.26.0",
"@typescript-eslint/parser": "^4.23.0",
"@typescript-eslint/eslint-plugin": "^4.23.0"
}
}