-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 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
45
{
"name": "typeorm-typegraphql-apollo-boilerplate",
"version": "0.0.1",
"author": {
"name": "Jeremy Bernier",
"email": "[email protected]",
"url": "https://www.jbernier.com"
},
"description": "TypeORM TypeGraphQL Apollo Boilerplate",
"main": "src/index.ts",
"scripts": {
"dev": "nodemon --exec ts-node src/index.ts",
"compile": "tsc",
"start": "npm run compile && node ./dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"license": "ISC",
"dependencies": {
"@apollo/server": "^4.2.1",
"argon2": "^0.30.2",
"body-parser": "^1.20.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"connect-redis": "^6.1.3",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-session": "^1.17.3",
"graphql": "16.6.0",
"graphql-tools": "^8.3.12",
"ioredis": "^5.2.4",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"nodemailer": "^6.8.0",
"pg": "^8.8.0",
"reflect-metadata": "^0.1.13",
"type-graphql": "2.0.0-beta.1",
"typeorm": "^0.3.11"
},
"devDependencies": {
"nodemon": "^2.0.20",
"typescript": "^4.9.3"
}
}