-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.75 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
{
"name": "@ergo-graphql/server",
"version": "0.5.2",
"description": "Ergo GraphQL server",
"main": "src/index.ts",
"scripts": {
"dev": "ts-node-dev --transpile-only --no-notify --exit-child src/index.ts",
"test:integration": "jest --testPathPattern=tests/integration*",
"test:unit": "jest --config=jest.config.unit.js --testPathIgnorePatterns=tests/integration*",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"build": "tsc -p tsconfig.json",
"start": "node dist/index.js"
},
"repository": {
"type": "git",
"url": "ergo-graphql"
},
"keywords": [
"ergo",
"graphql",
"blockchain",
"explorer"
],
"author": "capt_nemo",
"license": "MIT",
"devDependencies": {
"@types/graphql-depth-limit": "^1.1.3",
"@types/ioredis": "^4.28.10",
"@types/jest": "^28.1.8",
"@types/lodash": "^4.14.191",
"@types/node": "^18.13.0",
"@types/validator": "^13.7.12",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"jest": "^28.1.3",
"ts-jest": "^28.0.8",
"ts-node-dev": "^2.0.0",
"typescript": "4.7.4"
},
"dependencies": {
"@ergo-graphql/typeorm-graphql-loader": "^1.7.5",
"@fleet-sdk/core": "^0.7.0",
"apollo-server": "^3.13.0",
"apollo-server-cache-redis": "^3.3.1",
"apollo-server-plugin-response-cache": "^3.8.2",
"axios": "^1.7.7",
"class-validator": "^0.14.1",
"dotenv": "^16.0.3",
"graphql": "^15.8.0",
"graphql-depth-limit": "^1.1.0",
"graphql-type-json": "^0.3.2",
"ioredis": "5.4.1",
"lodash": "^4.17.21",
"pg": "^8.13.0",
"reflect-metadata": "^0.1.14",
"type-graphql": "^1.1.1",
"typeorm": "0.3.20"
}
}