-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.25 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.25 KB
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
{
"name": "type-graphql",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"@sendgrid/mail": "^6.4.0",
"apollo-server-express": "^2.9.15",
"argon2": "^0.25.1",
"class-validator": "^0.11.0",
"connect-redis": "^4.0.3",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-session": "^1.17.0",
"graphql": "^14.5.8",
"ioredis": "^4.14.1",
"pg": "^7.17.0",
"reflect-metadata": "^0.1.13",
"type-graphql": "^0.17.6",
"typeorm": "^0.2.22",
"uuid": "^3.3.3",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/argon2": "^0.15.0",
"@types/connect-redis": "^0.0.13",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.2",
"@types/express-session": "^1.15.16",
"@types/faker": "^4.1.8",
"@types/graphql": "^14.5.0",
"@types/ioredis": "^4.14.3",
"@types/jest": "^24.0.25",
"@types/node": "^13.1.4",
"@types/uuid": "^3.4.6",
"faker": "^4.1.0",
"jest": "^24.9.0",
"ts-jest": "^24.2.0",
"ts-node": "^8.5.4",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.7.4"
},
"scripts": {
"start": "ts-node-dev --respawn src/index.ts",
"db:setup": "ts-node ./src/test-utils/setup.ts",
"test": "npm run db:setup && jest"
}
}