-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.5 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.5 KB
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
{
"name": "nft-database",
"version": "1.0.0",
"description": "Database Interface to query nfts owned by an address",
"exports": "index.js",
"type": "module",
"scripts": {
"build:dev": "tsc --watch --preserveWatchOutput",
"build": "tsc --preserveWatchOutput",
"base": "node dist/entry-point.js",
"dev": "nodemon --watch dist -e js,ejs --exec npm run base",
"anal": "node dist/analytics/index.js",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"lint": "eslint . --ext .ts",
"server": "node dist/websocket-server.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@terra-money/terra.js": "^3.1.3",
"@types/lodash": "^4.14.182",
"axios": "^0.26.0",
"axios-retry": "^3.2.4",
"camelcase-object-deep": "^1.1.7",
"cloudscraper": "^4.6.0",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"https": "^1.0.0",
"ioredis": "^5.0.4",
"knex": "^2.2.0",
"lodash": "^4.17.21",
"mysql": "^2.18.1",
"mysql2": "^2.3.3",
"nodemon": "^2.0.15",
"p-limit": "^3.1.0",
"p-map": "^5.5.0",
"redlock": "^5.0.0-beta.2",
"rsmq": "^0.12.4",
"toobusy-js": "^0.5.1"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/mysql": "^2.15.21",
"@types/node": "^16.11.26",
"@types/toobusy-js": "^0.5.2",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"eslint": "^8.12.0",
"prettier": "2.7.1",
"typescript": "^4.6.2"
}
}