-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
122 lines (122 loc) · 3.84 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
112
113
114
115
116
117
118
119
120
121
122
{
"name": "three-meals",
"version": "1.0.0",
"engines": {
"node": ">=14.15.0 <15.0.0"
},
"description": "",
"main": "index.js",
"scripts": {
"prebuild": "rm -rf dist",
"build": "tsc -p tsconfig.build.json",
"start": "node dist/bin/www.js",
"dev": "NODE_ENV=development tsc-watch -p tsconfig.build.json --onSuccess \" node dist/bin/www.js\" ",
"lint": "eslint --fix \"src/**/*.{js,ts}\" --quiet --fix",
"test": "NODE_ENV=test jest",
"test:unit": "NODE_ENV=test jest ./test/unit",
"pretest:e2e": "./script/forE2ETest.sh start",
"test:e2e": "NODE_ENV=test jest ./test/e2e",
"posttest:e2e": "./script/forE2ETest.sh end"
},
"author": "depromeet",
"license": "ISC",
"dependencies": {
"@types/jsonwebtoken": "^8.5.1",
"apollo-server-express": "^2.22.1",
"aws-sdk": "^2.874.0",
"axios": "^0.21.1",
"builder-pattern": "1.3.0",
"class-transformer": "0.4.0",
"class-validator": "0.13.1",
"cls-rtracer": "2.6.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dataloader": "2.0.0",
"dayjs": "1.10.4",
"dotenv": "^8.2.0",
"eventemitter2": "6.4.4",
"express": "^4.17.1",
"express-session": "^1.17.1",
"faker": "5.5.3",
"graphql": "15.5.0",
"graphql-upload": "^11.0.0",
"helmet": "^4.4.1",
"hpp": "^0.2.3",
"http-error": "0.0.6",
"jsonwebtoken": "^8.5.1",
"lodash": "4.17.21",
"lodash.merge": "^4.6.2",
"moment": "^2.29.1",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"mysql2": "^2.2.5",
"passport": "^0.4.1",
"reflect-metadata": "0.1.13",
"tsconfig-paths": "3.9.0",
"type-graphql": "1.1.1",
"type-graphql-dataloader": "0.3.7",
"typedi": "0.10.0",
"typeorm": "^0.2.32",
"typeorm-typedi-extensions": "^0.4.1",
"typescript": "^4.2.3",
"ua-parser-js": "0.7.27",
"uuid": "3.3.2",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.1"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.10",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.11",
"@types/express-session": "^1.17.3",
"@types/faker": "5.5.1",
"@types/graphql-upload": "^8.0.4",
"@types/helmet": "^4.0.0",
"@types/hpp": "^0.2.1",
"@types/http-errors": "^1.8.0",
"@types/jest": "26.0.22",
"@types/lodash": "4.14.168",
"@types/lodash.merge": "^4.6.6",
"@types/morgan": "^1.9.2",
"@types/multer": "^1.4.5",
"@types/multer-s3": "^2.7.9",
"@types/node": "^14.14.37",
"@types/passport": "^1.0.6",
"@types/supertest": "2.0.11",
"@types/ua-parser-js": "0.7.35",
"@types/uuid": "8.3.0",
"@types/validator": "^13.1.3",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"apollo-server-testing": "2.25.2",
"eslint": "^7.23.0",
"eslint-config-google": "^0.14.0",
"graphql-request": "3.5.0",
"jest": "26.6.3",
"nock": "13.0.11",
"nodemon": "^2.0.7",
"supertest": "6.1.3",
"ts-jest": "26.5.4",
"ts-mockito": "2.6.1",
"ts-node": "^9.1.1",
"tsc-watch": "^4.2.9"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}