-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.63 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
{
"name": "wrap-indexer",
"version": "1.1.7",
"license": "MIT",
"description": "Wrap protocol indexer",
"repository": "github:bender-labs/wrap-indexer",
"engines": {
"node": ">= 14.15 <15"
},
"devDependencies": {
"@types/cors": "^2.8.10",
"@types/jest": "~26.0.19",
"@types/node": "~14.14.25",
"@typescript-eslint/eslint-plugin": "~4.12.0",
"@typescript-eslint/parser": "~4.12.0",
"eslint": "~7.17.0",
"eslint-config-prettier": "~7.1.0",
"eslint-plugin-jest": "~24.1.3",
"jest": "~26.6.3",
"prettier": "~2.2.1",
"rimraf": "~3.0.2",
"ts-jest": "~26.4.4",
"ts-node": "^9.1.1",
"tsutils": "~3.18.0",
"typescript": "~4.1.3"
},
"scripts": {
"start": "node build/src/main.js",
"clean": "rimraf coverage build tmp",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "eslint . --ext .ts,.tsx",
"db:migrate": "knex migrate:latest --cwd src/db"
},
"dependencies": {
"@arpinum/config": "^2.1.2",
"@taquito/taquito": "^9.2.0",
"@taquito/tzip12": "^9.2.0",
"@taquito/tzip16": "^9.2.0",
"@types/cron": "^1.7.2",
"@types/express": "^4.17.11",
"axios": "^0.21.1",
"bignumber.js": "^9.0.1",
"cors": "^2.8.5",
"cron": "^1.8.2",
"ethers": "^5.0.30",
"express": "^4.17.1",
"helmet": "^4.4.1",
"ipfs-http-client": "^49.0.2",
"knex": "^0.21.17",
"knex-stringcase": "^1.4.5",
"lodash": "^4.17.20",
"morgan": "^1.10.0",
"node-cache": "^5.1.2",
"pg": "^8.5.1",
"tslib": "~2.0.3",
"tslog": "^3.1.1"
},
"volta": {
"node": "14.15.0"
}
}