-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 2.23 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
84
{
"name": "nft-api",
"version": "1.0.0",
"description": "",
"author": "",
"license": "ISC",
"scripts": {
"start": "ts-node src/app.ts",
"start:worker": "ts-node src/worker.ts",
"start:indexer": "ts-node src/indexer.ts",
"dev": "nodemon -e js,ts,json src/app.ts",
"test": "nyc ava",
"prettier:check": "prettier --check src/**/*",
"prettier:fix": "prettier --write src/**/*",
"prepare": "husky install",
"build": "yarn clean && cp -R src dist && tsc",
"clean": "rm -rf ./dist"
},
"dependencies": {
"@elastic/elasticsearch": "^7.16.0",
"@graphql-tools/schema": "^8.2.0",
"@koa/cors": "^3.1.0",
"@koa/router": "^9.4.0",
"@types/node": "^15.12.2",
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
"apollo-link-http": "^1.5.17",
"ava": "^3.12.1",
"aws-sdk": "^2.953.0",
"axios": "^0.26.0",
"bignumber.js": "^9.0.1",
"blueimp-md5": "^2.18.0",
"bull": "^4.6.2",
"cls-hooked": "^4.2.2",
"date-fns": "^2.21.3",
"dotenv": "^10.0.0",
"eth-multicall": "^1.3.13",
"ethers": "^5.4.1",
"express-graphql": "^0.12.0",
"graphql": "^15.5.0",
"graphql-relay": "^0.8.0",
"graphql-sequelize": "^9.4.3",
"graphql-tag": "^2.12.4",
"husky": "^6.0.0",
"js-string-escape": "^1.0.1",
"knex": "^0.95.11",
"koa": "^2.13.0",
"koa-basic-auth": "^4.0.0",
"koa-bodyparser": "^4.3.0",
"koa-conditional-get": "^3.0.0",
"koa-etag": "^4.0.0",
"koa-graphql": "^0.9.0",
"koa-helmet": "^5.2.0",
"koa-mount": "^4.0.0",
"koa-router": "^9.4.0",
"lint-staged": "^11.0.0",
"mongoose": "^5.13.3",
"node-cache": "^5.1.2",
"node-fetch": "^2.6.1",
"pg": "^8.6.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.6.5",
"sharp": "^0.29.3",
"sqlstring": "^2.3.2",
"text-to-image": "^4.1.1",
"text2png": "^2.3.0",
"ts-node": "^10.0.0",
"typescript": "^4.3.2",
"web3": "^1.6.1",
"yaml": "^1.10.2"
},
"devDependencies": {
"copyfiles": "^2.4.1",
"nodemon": "^2.0.6",
"nyc": "^15.1.0",
"prettier": "^2.3.2",
"yargs": "^17.0.1"
},
"lint-staged": {
"*.ts": "prettier --write",
"*.js": "prettier --write",
"*.json": "prettier --write"
}
}