-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.3 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.3 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
{
"name": "typegraphql",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:sameerkhan116/TypeGraphQL.git",
"author": "Sameer Khan <sameer_khan@student.uml.edu>",
"license": "MIT",
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"apollo-server-express": "^2.4.8",
"bcryptjs": "^2.4.3",
"class-validator": "^0.9.1",
"connect-redis": "^3.4.1",
"cors": "^2.8.5",
"express": "^4.16.4",
"express-session": "^1.16.1",
"graphql": "^14.2.1",
"ioredis": "^4.9.0",
"nodemailer": "^6.1.1",
"pg": "^7.10.0",
"reflect-metadata": "^0.1.13",
"type-graphql": "^0.17.3",
"typeorm": "^0.2.17",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/connect-redis": "^0.0.10",
"@types/cors": "^2.8.5",
"@types/express": "^4.16.1",
"@types/express-session": "^1.15.12",
"@types/graphql": "^14.2.0",
"@types/ioredis": "^4.0.10",
"@types/jest": "^24.0.15",
"@types/node": "^12.0.0",
"@types/nodemailer": "^6.1.0",
"@types/uuid": "^3.4.4",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"ts-node-dev": "^1.0.0-pre.35",
"typescript": "^3.5.2"
},
"scripts": {
"start": "ts-node-dev --respawn src/index.ts",
"db:setup": "ts-node ./src/test-utils/setup.ts",
"test": "npm run db:setup && jest"
}
}