-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.8 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.8 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
60
61
62
63
64
65
{
"name": "47vigen",
"version": "1.0.0",
"description": "just a blog for me",
"main": "app.js",
"scripts": {
"watch": "tsc -w",
"dev": "nodemon dist/index.js",
"start": "node dist/index.js",
"start:ts": "ts-node src/index.ts",
"clear": "rm -r dist && git pull && yarn && tsc",
"pm2:start": "pm2 start yarn --name 'back' -- start",
"pm2:logs": "pm2 logs back",
"pm2:delete": "pm2 delete back",
"gen-env": "gen-env-types .env -o src/env.d.ts -e ."
},
"author": "47vigen",
"license": "ISC",
"mikro-orm": {
"useTsNode": true,
"configPaths": [
"./src/mikro-orm.config.ts",
"./dist/mikro-orm.config.js"
]
},
"devDependencies": {
"@mikro-orm/cli": "^4.5.10",
"@types/continuation-local-storage": "^3.2.4",
"@types/jsonwebtoken": "^8.5.6",
"@types/node": "^17.0.5",
"@types/uuid": "^8.3.3",
"cross-env": "^7.0.3",
"gen-env-types": "^1.3.0",
"nodemon": "^2.0.15",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"dependencies": {
"@mikro-orm/migrations": "^4.5.10",
"@mikro-orm/postgresql": "^4.5.10",
"app-root-path": "^3.0.0",
"argon2": "^0.28.3",
"class-validator": "^0.13.2",
"dataloader": "^2.0.0",
"dotenv-safe": "^8.2.0",
"fastify": "^3.25.3",
"fastify-cookie": "^5.4.0",
"fastify-cors": "^6.0.2",
"fastify-static": "^4.5.0",
"graphql": "15.8.0",
"graphql-fields-list": "^2.2.4",
"graphql-fields-to-relations": "^1.0.5",
"ioredis": "^4.28.2",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mercurius": "8.12.0",
"mercurius-auth": "^1.5.0",
"mercurius-upload": "^3.0.1",
"mikro-orm": "^4.5.10",
"mikro-orm-cache-adapter-redis": "^2.0.0",
"reflect-metadata": "^0.1.13",
"type-graphql": "^1.1.1",
"uuid": "^8.3.2"
}
}