-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
76 lines (76 loc) · 2.44 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
{
"name": "eosio-contract-api",
"version": "1.3.24",
"description": "EOSIO Contract API",
"author": "pink.gg",
"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 'src/**/*.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",
"dev:test:watch": "mocha -r ts-node/register 'src/**/*.test.ts' --watch --watch-files src/ --reporter min",
"dev:init-test-db": "tsc && node --trace-warnings ./build/bin/init-test-db.js"
},
"dependencies": {
"async-exit-hook": "^2.0.1",
"atomicassets": "^1.4.2",
"await-lock": "^2.2.1",
"body-parser": "^1.20.0",
"common-tags": "^1.8.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"eosjs": "^22.1.0",
"express": "^4.18.0",
"express-rate-limit": "^6.4.0",
"int64-buffer": "^1.0.1",
"ioredis": "^5.0.4",
"moize": "^6.1.1",
"node-fetch": "^2.6.7",
"node-worker-threads-pool": "^1.5.1",
"p-queue": "^6.6.2",
"pg": "^8.7.3",
"pm2": "^5.2.0",
"prom-client": "^14.0.1",
"rate-limit-redis": "^3.0.1",
"redis": "^4.0.6",
"socket.io": "^4.5.0",
"swagger-ui-express": "^4.3.0",
"text-encoding": "^0.7.0",
"winston": "^3.7.2",
"ws": "^7.5.7"
},
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/chai": "^4.3.1",
"@types/common-tags": "^1.8.1",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/elliptic": "^6.4.14",
"@types/express": "^4.17.13",
"@types/ioredis": "^4.28.10",
"@types/mocha": "^9.1.1",
"@types/node": "^16.11.29",
"@types/node-fetch": "^2.6.1",
"@types/pg": "^8.6.5",
"@types/swagger-ui-express": "^4.1.3",
"@types/text-encoding": "^0.0.36",
"@types/ws": "^7.4.7",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"chai": "^4.3.6",
"eslint": "^7.32.0",
"mocha": "^9.2.2",
"rimraf": "^3.0.2",
"ts-loader": "^9.2.8",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
}
}