-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.19 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
{
"name": "ts-graphql-boilerplate",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/DanCarl857/ts-graphql-server-boilerplate.git",
"author": "<[email protected]>",
"license": "MIT",
"dependencies": {
"apollo-server-express": "^2.21.0",
"bcryptjs": "^2.4.3",
"class-validator": "^0.13.1",
"connect-redis": "^5.1.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-session": "^1.17.1",
"graphql": "^15.5.0",
"ioredis": "^4.22.0",
"mongodb": "^3.6.4",
"mongoose": "^5.11.17",
"nodemailer": "^6.5.0",
"reflect-metadata": "^0.1.13",
"type-graphql": "^1.1.1",
"typeorm": "^0.2.31",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/connect-redis": "^0.0.16",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/express-session": "^1.17.3",
"@types/graphql": "^14.5.0",
"@types/ioredis": "^4.19.4",
"@types/node": "^14.14.31",
"@types/nodemailer": "^6.4.0",
"@types/uuid": "^8.3.0",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
},
"scripts": {
"start": "ts-node-dev --respawn src/index.ts"
}
}