-
Notifications
You must be signed in to change notification settings - Fork 173
/
package.json
90 lines (90 loc) · 2.46 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": "whatsapp-clone-server",
"description": "A newly created Tortilla project",
"repository": {
"type": "git",
"url": "https://github.com/Urigo/WhatsApp-Clone-Server.git"
},
"private": true,
"scripts": {
"prestart": "yarn codegen",
"start": "ts-node index.ts",
"prebuild": "yarn codegen",
"prod": "node dist/index.js",
"build": "tsc",
"test": "jest --runInBand --forceExit",
"codegen": "graphql-codegen",
"format": "prettier \"**/*.ts\" --write",
"loadtest": "yarn artillery run artillery.yml > loadtest.log",
"loadtest:limit": "yarn artillery run artillery-limit.yml > loadtest.log"
},
"jest-junit": {
"outputDirectory": "./test-results"
},
"devDependencies": {
"@graphql-codegen/cli": "1.14.0",
"@graphql-codegen/typescript": "1.14.0",
"@graphql-codegen/typescript-resolvers": "1.14.0",
"@types/bcrypt": "3.0.0",
"@types/cors": "2.8.6",
"@types/cookie": "0.4.0",
"@types/cookie-parser": "1.4.2",
"@types/express": "4.17.6",
"@types/faker": "4.1.12",
"@types/graphql": "14.5.0",
"@types/jest": "25.2.3",
"@types/jsonwebtoken": "8.5.0",
"@types/lodash": "4.14.152",
"@types/node": "14.0.4",
"@types/pg": "7.14.3",
"artillery": "1.6.0",
"jest": "26.0.1",
"jest-junit": "10.0.0",
"prettier": "2.0.5",
"ts-jest": "26.0.0",
"ts-node": "8.10.1",
"typescript": "3.9.3"
},
"dependencies": {
"@graphql-modules/core": "0.7.17",
"@graphql-modules/di": "0.7.17",
"@safe-api/middleware": "0.0.2",
"apollo-datasource-rest": "0.9.0",
"apollo-server-express": "2.13.1",
"apollo-server-testing": "2.13.1",
"axios": "0.19.2",
"bcrypt": "4.0.1",
"cookie": "0.4.1",
"cors": "2.8.5",
"cookie-parser": "1.4.5",
"dataloader": "2.0.0",
"date-fns": "2.14.0",
"express": "4.17.1",
"faker": "4.1.0",
"graphql": "15.0.0",
"graphql-import": "1.0.2",
"graphql-scalars": "1.1.2",
"graphql-postgres-subscriptions": "1.0.5",
"graphql-tools": "5.0.0",
"jsonwebtoken": "8.5.1",
"lodash": "4.17.15",
"pg": "8.2.1",
"reflect-metadata": "0.1.13",
"sql-template-strings": "2.2.2"
},
"jest": {
"transform": {
"^.+\\.(js|jsx|ts|tsx)$": "<rootDir>/node_modules/ts-jest"
},
"globals": {
"ts-jest": {
"diagnostics": false
}
},
"globalSetup": "<rootDir>/tests/global-setup.ts",
"reporters": [
"default",
"jest-junit"
]
}
}