-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.2 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
{
"name": "indexing-api",
"version": "0.0.1",
"description": "",
"author": "dropps_io",
"private": false,
"license": "UNLICENSED",
"scripts": {
"compile": "tsc",
"build": "nest build",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint:fix": "eslint \"{src,libs,test,types,scripts,utils,database,contracts}/**/*{.ts,.js}\" --fix",
"test": "jest --runInBand",
"test:watch": "jest --watch --runInBand",
"test:cov": "jest --coverage --runInBand",
"seed-lukso-structure-db": "ts-node -r tsconfig-paths/register scripts/database/lukso-structure/index.ts",
"seed-lukso-data-db": "ts-node -r tsconfig-paths/register scripts/database/lukso-data/index.ts",
"seed:all": "npm run seed-lukso-structure-db && npm run seed-lukso-data-db"
},
"dependencies": {
"@apollo/server": "^4.9.3",
"@as-integrations/fastify": "^2.1.0",
"@nestjs/apollo": "^11.0.4",
"@nestjs/common": "^10.2.4",
"@nestjs/config": "^3.0.1",
"@nestjs/core": "^10.2.4",
"@nestjs/graphql": "^11.0.4",
"@nestjs/platform-fastify": "^10.2.5",
"@nestjs/swagger": "^7.1.10",
"@nestjs/throttler": "^5.0.0",
"apollo-server-express": "^3.12.1",
"class-validator": "^0.14.0",
"dotenv": "^16.0.3",
"fastify": "^4.23.0",
"graphql": "^16.8.0",
"graphql-tools": "^8.3.19",
"knex": "^2.4.2",
"pg": "^8.11.0",
"pg-format": "^1.0.4",
"winston": "^3.8.2"
},
"devDependencies": {
"@nestjs/cli": "^10.1.17",
"@nestjs/schematics": "^10.0.2",
"@nestjs/testing": "^10.2.4",
"@types/jest": "^29.5.0",
"@types/knex": "^0.16.1",
"@types/node": "^18.15.3",
"@types/pg": "^8.6.6",
"@types/reflect-metadata": "^0.1.0",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^4.9.5"
}
}