-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.8 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
{
"name": "flight-ticket",
"version": "0.0.1",
"author": "eedkevin@gmail.com",
"private": true,
"main": "src/server.ts",
"scripts": {
"pretty": "prettier --write \"{src,test,seed}/**/*.{js,jsx,ts,tsx}\"",
"p": "npm run pretty",
"lint": "eslint . --ext .ts",
"seed": "ts-node seed/index.ts",
"build": "tsc --build",
"clean": "tsc --build --clean",
"dev:server": "nodemon -w src/ src/server.ts",
"dev:worker": "nodemon -w src/ src/worker.ts",
"start:server": "node ./dist/src/server.js",
"start:worker": "node ./dist/src/worker.js",
"test:unit": "mocha --require ts-node/register 'test/unit/**/*.spec.ts' --exit",
"test:e2e": "mocha --require ts-node/register 'test/e2e/**/*.spec.ts' --timeout 10000 --exit",
"test:coverage": "nyc mocha --require ts-node/register 'test/**/**/*.spec.ts' --exit",
"test:stress": "sh run_stress_test.sh"
},
"dependencies": {
"@graphql-tools/schema": "^8.2.0",
"apollo-server": "^2.2.3",
"apollo-server-express": "^2.2.3",
"async-retry": "^1.3.3",
"camel-case": "^4.1.2",
"cors": "^2.8.5",
"dotenv": "^6.1.0",
"express": "^4.17.1",
"graphql": "^14.0.2",
"graphql-iso-date": "^3.6.1",
"graphql-redis-subscriptions": "^2.4.0",
"graphql-resolvers": "^0.2.2",
"graphql-subscriptions": "^1.2.1",
"handy-redis": "^2.2.2",
"helmet": "^4.6.0",
"http-status-codes": "^2.1.4",
"ioredis": "^4.27.9",
"lodash": "^4.17.21",
"morgan": "^1.9.1",
"pg": "^7.6.1",
"redis": "^3.1.2",
"redis-modules-sdk": "^0.9.8",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.6.5",
"sequelize-typescript": "^2.1.0",
"snakecase-keys": "^4.0.2",
"ts-nats": "^1.2.15",
"ts-retry": "^2.3.5",
"uuid": "^8.3.2",
"winston": "^3.3.3"
},
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/register": "^7.15.3",
"@types/command-line-args": "^5.2.0",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.13",
"@types/find": "^0.2.1",
"@types/fs-extra": "^9.0.12",
"@types/ioredis": "^4.27.2",
"@types/jsonfile": "^6.0.1",
"@types/lodash": "^4.14.172",
"@types/mocha": "^9.0.0",
"@types/morgan": "^1.9.3",
"@types/node": "^16.7.2",
"@types/supertest": "^2.0.11",
"@types/uuid": "^8.3.1",
"@types/validator": "^13.6.3",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"artillery": "^1.7.8",
"chai": "^4.2.0",
"eslint": "^7.32.0",
"faker": "^5.5.3",
"mocha": "^9.1.1",
"nodemon": "^2.0.12",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"sinon": "^11.1.2",
"supertest": "^6.1.6",
"ts-node": "^10.2.1",
"tsconfig-paths": "^3.10.1",
"typescript": "^4.3.5"
}
}