-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.74 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "reddit-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"start": "node dist/index.js",
"typescript:start": "ts-node src/index.ts",
"dev": "nodemon dist/index.js",
"typescript:dev": "nodemon --exec ts-node src/index.ts",
"gen-env": "gen-env-types .env -o src/env.d.ts -e .",
"testDB:setup": "ts-node src/__test__/testSetup.ts",
"test:resolvers": "npm run testDB:setup && jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/connect-redis": "^0.0.14",
"@types/cors": "^2.8.7",
"@types/express": "^4.17.7",
"@types/express-session": "^1.17.0",
"@types/faker": "^5.1.6",
"@types/ioredis": "^4.17.3",
"@types/jest": "^26.0.20",
"@types/node": "^14.6.0",
"@types/nodemailer": "^6.4.0",
"@types/redis": "^2.8.26",
"@types/uuid": "^8.3.0",
"class-validator": "^0.13.1",
"faker": "^5.3.1",
"gen-env-types": "^1.0.4",
"jest": "^26.6.3",
"nodemon": "^2.0.4",
"ts-jest": "^26.5.0",
"ts-node": "^8.10.2",
"typescript": "^4.0.2"
},
"dependencies": {
"apollo-server-express": "^2.16.1",
"argon2": "^0.27.0",
"connect-redis": "^5.0.0",
"cors": "^2.8.5",
"dataloader": "^2.0.0",
"dotenv-safe": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"graphql": "^15.3.0",
"ioredis": "^4.17.3",
"nodemailer": "^6.4.11",
"pg": "^8.3.2",
"reflect-metadata": "^0.1.13",
"type-graphql": "^1.0.0",
"typeorm": "^0.2.25",
"uuid": "^8.3.0"
},
"mikro-orm": {
"useTsNode": true,
"configPaths": [
"./src/mikro-orm.config.ts",
"./dist/mikro-orm.config.js"
]
}
}