-
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.58 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.58 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": "redditserver",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"watch": "tsc -w",
"dev": "nodemon dist/index.js",
"migrate:create": "npx mikro-orm migration:create",
"migrate:up": "npx mikro-orm migration:up",
"migrate:down": "npx mikro-orm migration:down",
"migrate:fresh": "npx mikro-orm migration:fresh",
"start": "node dist/index.js",
"start2": "ts-node src/index.ts",
"dev2": "ndemon --exec ts-node src/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/connect-redis": "^0.0.18",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.5",
"@types/node": "^18.6.4",
"@types/redis": "^4.0.11",
"nodemon": "^2.0.19",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"dependencies": {
"@apollo/utils.keyvaluecache": "^1.0.1",
"@mikro-orm/cli": "^5.3.1",
"@mikro-orm/core": "^5.3.1",
"@mikro-orm/migrations": "^5.3.1",
"@mikro-orm/postgresql": "^5.3.1",
"apollo-server-express": "^3.10.0",
"argon2": "^0.28.7",
"connect-redis": "^6.1.3",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-session": "1.17.0",
"graphql": "^15.3.0",
"metadata": "^0.1.0",
"pg": "^8.7.3",
"postgresql": "^0.0.1",
"redis": "^4.2.0",
"reflect-metadata": "^0.1.13",
"type-graphql": "^1.1.1"
},
"mikro-orm": {
"useTsNode": true,
"configPaths": [
"./src/mikro-orm.config.ts",
"./dist/mikro-orm.config.js"
]
}
}