-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "be-infinity",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"ci-pre-build": "mkdir ./src/creds && mkdir ./creds && cp ./ci/creds-blank/* ./creds && cp ./ci/creds-blank/* ./src/creds && cp ./ci/.env .env",
"clean": "rimraf dist",
"build": "npm run clean && npm run update:lib && nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "node dist/main",
"script:dev": "nest build && INFINITY_NODE_ENV=dev node dist/script",
"script:prod": "nest build && node dist/script",
"start:dev": "npm run clean && cross-env INFINITY_NODE_ENV=dev nest start --watch",
"dev": "npm run start:dev",
"start:debug": "npm run clean && cross-env INFINITY_NODE_ENV=dev nest start --debug --watch",
"start:prod": "npm run clean && nest start --watch",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json",
"update:lib": "npm install @infinityxyz/lib@latest",
"pre:push": "npm run lint && npm run format && npm run build",
"deploy:dev": "npm run build && gcloud app deploy -q --appyaml=./app.dev.yaml --project=nftc-dev",
"deploy:prod": "npm run build && gcloud app deploy -q --appyaml=./app.prod.yaml --project=nftc-infinity"
},
"dependencies": {
"@infinityxyz/lib": "^1.351.0",
"@nestjs/common": "^9.1.2",
"@nestjs/config": "^2.2.0",
"@nestjs/core": "^9.1.2",
"@nestjs/platform-express": "^9.1.2",
"@nestjs/swagger": "^6.1.2",
"@nestjs/throttler": "^3.0.0",
"@reservoir0x/sdk": "0.0.323",
"@uniswap/sdk-core": "^3.1.0",
"@uniswap/v3-sdk": "^3.9.0",
"api": "^5.0.0-beta.3",
"axios": "0.26.1",
"bignumber.js": "9.0.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"cross-env": "^7.0.3",
"date-fns": "^2.28.0",
"ethers": "5.6.4",
"express": "4.17.3",
"firebase-admin": "^11.4.1",
"got": "^11.8.3",
"graphql-request": "^4.3.0",
"helmet": "^5.0.2",
"jsbi": "^3.1.4",
"lodash": "^4.17.21",
"nanoid": "^3.3.4",
"nestjs-throttler-storage-redis": "^0.1.20",
"p-queue": "^6.6.2",
"pg": "^8.9.0",
"pg-promise": "^11.2.0",
"pg-query-stream": "^4.3.0",
"qs": "^6.10.3",
"rxjs": "^7.5.5",
"twitter-api-v2": "^1.14.2"
},
"devDependencies": {
"@nestjs/cli": "^9.1.3",
"@nestjs/testing": "^9.1.2",
"@types/express": "^4.17.13",
"@types/jest": "27.4.1",
"@types/lodash": "^4.14.181",
"@types/multer": "^1.4.7",
"@types/node": "^16.0.0",
"@types/pg": "^8.6.6",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"firebase-mock": "^2.3.2",
"jest": "^27.5.1",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"supertest": "^6.2.2",
"swagger-ui-express": "^4.5.0",
"ts-jest": "^27.1.4",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"moduleDirectories": [
"node_modules",
"src"
],
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}