-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
71 lines (71 loc) · 2.51 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
{
"name": "graphql-gateway",
"version": "2.0.0",
"description": "GraphQL gateway for Atheros Intelligence Ltd.",
"main": "index.js",
"scripts": {
"tsc": "tsc --p ./tsconfig.json",
"test": "NODE_ENV=test CUSTOM_ENV=local jest",
"test:unit": "NODE_ENV=test CUSTOM_ENV=local jest --config tests/jest.unit.config.json",
"test:integration": "NODE_ENV=test CUSTOM_ENV=local jest --config tests/jest.integration.config.json",
"test:watch": "jest --watch",
"test:eslint": "NODE_ENV=test CUSTOM_ENV=local jest --config tests/jest.eslint.config.json",
"transpile:server": "tsc --project tsconfig.json",
"eslint:fix": "eslint . --fix --ignore-path .gitignore --ext .js,.ts",
"eslint": "eslint . --ext .js,.ts",
"dev": "NODE_ENV=development CUSTOM_ENV=local nodemon server",
"staging": "npm run transpile:server && NODE_ENV=production CUSTOM_ENV=staging node dist/server/index.js --expose-http2 ",
"production": "npm run transpile:server && NODE_ENV=production CUSTOM_ENV=production node dist/server/index.js --expose-http2 ",
"gen:schema": "ts-node --project tsconfig.json server/lib/gen-sdl-schema.ts"
},
"keywords": [
"graphql",
"express",
"typescript",
"node",
"apollo-server"
],
"author": "Atheros Intelligence <support@atheros.ai>",
"license": "ISC",
"engines": {
"node": ">=10.0.0",
"npm": ">6"
},
"dependencies": {
"apollo-server-express": "^3.10.2",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"graphql": "^16.7.1",
"graphql-depth-limit": "^1.1.0",
"graphql-query-complexity": "^0.12.0",
"helmet": "^7.0.0",
"module-alias": "^2.2.3",
"uuid": "^9.0.0",
"validator": "^13.9.0"
},
"devDependencies": {
"@types/express-rate-limit": "^5.0.0",
"@types/graphql-depth-limit": "^1.1.3",
"@types/helmet": "0.0.48",
"@types/jest": "^29.5.2",
"@types/uuid": "^9.0.2",
"@types/validator": "^13.7.17",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"eslint": "^8.43.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-security": "^1.7.1",
"jest": "^29.5.0",
"jest-runner-eslint": "^2.1.0",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
}
}