This repository has been archived by the owner on Sep 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.69 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
{
"name": "forum-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node-dev --respawn src/index.ts",
"dev": "nodemon --exec ts-node src/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"mikro-orm": {
"useTsNode": true,
"configPaths": [
"./src/mikro-orm.config.ts",
"./src/dist/mikro-orm.config.js"
]
},
"dependencies": {
"@graphql-codegen/typescript-urql": "^3.5.12",
"@mikro-orm/cli": "^5.1.1",
"@mikro-orm/core": "^5.1.1",
"@mikro-orm/migrations": "^5.1.1",
"@mikro-orm/postgresql": "^5.1.1",
"@mikro-orm/reflection": "^5.1.1",
"@types/node": "^18.0.0",
"@types/nodemailer": "^6.4.4",
"apollo-server-express": "^3.9.0",
"argon2": "^0.28.5",
"bcryptjs": "^2.4.3",
"class-validator": "^0.13.2",
"connect-redis": "^6.1.3",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-session": "^1.17.2",
"got": "11.8.5",
"graphql": "15.3.0",
"graphql-middleware": "^6.1.20",
"graphql-tools": "^8.2.3",
"ioredis": "^5.1.0",
"nodemailer": "^6.7.5",
"nodemon": "^2.0.18",
"pg": "^8.7.3",
"type-graphql": "^1.1.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/argon2": "^0.15.0",
"@types/bcryptjs": "^2.4.2",
"@types/connect-redis": "^0.0.18",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/ioredis": "^4.28.10",
"@types/pg": "^8.6.5",
"@types/uuid": "^8.3.4",
"graphql-tag": "^2.12.6",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
}
}