-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.34 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
{
"name": "type-graphql",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/caicaishmily/TypeGraphQL.git",
"author": "davechai <davecqx@gmail.com>",
"license": "MIT",
"scripts": {
"start": "ts-node-dev --respawn src/index.ts",
"db:setup": "ts-node ./src/test/setup.ts",
"test": "npm run db:setup && jest"
},
"dependencies": {
"apollo-server-express": "^2.6.9",
"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.15.6",
"graphql": "^14.0.2",
"ioredis": "^4.9.0",
"nodemailer": "^6.1.1",
"pg": "^7.8.0",
"reflect-metadata": "^0.1.13",
"type-graphql": "^0.16.0",
"typeorm": "^0.2.17",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/connect-redis": "^0.0.9",
"@types/cors": "^2.8.4",
"@types/express": "^4.16.0",
"@types/express-session": "^1.15.12",
"@types/graphql": "^14.0.4",
"@types/ioredis": "^4.0.10",
"@types/jest": "^24.0.12",
"@types/node": "^10.12.18",
"@types/nodemailer": "^4.6.8",
"@types/uuid": "^3.4.4",
"jest": "^24.7.1",
"nodemon": "^1.18.9",
"ts-jest": "^24.0.2",
"ts-node": "^7.0.1",
"ts-node-dev": "^1.0.0-pre.32",
"typescript": "^3.4.5"
}
}