-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.53 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
{
"name": "nft-cache",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"test": "NODE_ENV=dev mocha --timeout 360000 --check-leaks -r tsconfig-paths/register -r ts-node/register \"test/**/*.spec.ts\"",
"start": "node ./dist/src/index.js",
"dev": "nodemon ./src/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.95.0",
"@types/connect-timeout": "^0.0.36",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/mocha": "^9.1.1",
"@types/mongoose": "^5.11.97",
"@types/multer": "^1.4.7",
"@types/multer-s3": "^2.7.12",
"@types/node": "^17.0.34",
"@types/request": "^2.48.8",
"aws-sdk": "^2.1467.0",
"axios": "^0.27.2",
"bignumber.js": "^9.0.2",
"connect-timeout": "^1.9.0",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"mongoose": "^6.3.5",
"moralis": "^2.17.0",
"nft-parser": "git+https://github.com/xp-network/nft-parser#bleeding-edge",
"request": "^2.88.2",
"ts-node": "^10.7.0",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.6.4",
"uuidv4": "^6.2.13"
},
"devDependencies": {
"@types/supertest": "^2.0.12",
"chai": "^4.3.6",
"chai-http": "^4.3.0",
"mocha": "^10.0.0",
"nodemon": "^2.0.16",
"supertest": "^6.2.3"
}
}