-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.47 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
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "reddit-clone-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "nodemon dist/index.js",
"dev2": "nodemon --exec ts-node src/index.ts",
"watch": "tsc -W",
"start": "node dist/index.js",
"start2": "ts-node src/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.15",
"@types/node": "^18.11.18",
"nodemon": "^2.0.20",
"typescript": "^4.9.4"
},
"dependencies": {
"@mikro-orm/cli": "^5.6.3",
"@mikro-orm/core": "^5.6.3",
"@mikro-orm/migrations": "^5.6.3",
"@mikro-orm/postgresql": "^5.6.3",
"@types/connect-redis": "^0.0.19",
"@types/express-session": "1.17.0",
"@types/ioredis": "^5.0.0",
"@types/nodemailer": "^6.4.7",
"@types/uuid": "^9.0.0",
"apollo-server-express": "^3.11.1",
"argon2": "^0.30.2",
"connect-redis": "^6.1.3",
"cors": "^2.8.5",
"dataloader": "^2.1.0",
"dotenv": "^16.0.3",
"dotenv-safe": "^8.2.0",
"express": "^4.18.2",
"express-session": "1.17.0",
"graphql": "15.7.2",
"ioredis": "^5.2.4",
"nodemailer": "^6.8.0",
"pg": "^8.8.0",
"reflect-metadata": "^0.1.13",
"ts-node": "^10.9.1",
"type-graphql": "^1.1.1",
"typeorm": "0.2.25",
"uuid": "^9.0.0"
},
"mikro-orm": {
"useTsNode": true,
"configPaths": [
"./src/mikro-orm.config.ts",
"./dist/mikro-orm.config.js"
]
}
}