-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.13 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
67
68
69
70
71
72
73
74
75
{
"name": "ngt-api-boilerplate",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"gen-env": "gen-env-types .env -o src/env.d.ts -e .",
"dev": "nodemon dist/index.js",
"watch": "tsc -w",
"build": "tsc",
"backend": "concurrently \"yarn dev\" \"yarn watch\"",
"create:migration": "mikro-orm migration:create",
"test": "echo \"Error: no test specified\" && exit 1",
"production": "node dist/index.js",
"docker:run": "docker run -d --name hoots-backend -e TZ=UTC -p 4000:4000 enxo/hoots-locations-demo",
"docker:build": "docker build . -t enxo/hoots-locations-demo"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/connect-redis": "^0.0.17",
"@types/cors": "^2.8.12",
"@types/express": "4.17.7",
"@types/express-session": "1.17.0",
"@types/ioredis": "^4.27.5",
"@types/node": "^16.9.1",
"@types/nodemailer": "^6.4.4",
"@types/redis": "^2.8.32",
"@types/uuid": "^8.3.1",
"apollo-server-core": "^3.3.0",
"concurrently": "^6.3.0",
"gen-env-types": "^1.3.0",
"nodemon": "^2.0.12",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"dependencies": {
"@phoenix344/opening-hours": "^2.0.0",
"@types/graphql-type-json": "^0.3.2",
"apollo-server-express": "^3.3.0",
"axios": "^0.26.0",
"body-parser": "^1.19.2",
"class-validator": "^0.13.1",
"connect-redis": "^6.0.0",
"cors": "^2.8.5",
"dataloader": "^2.0.0",
"date-fns": "^2.28.0",
"dotenv-safe": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.2",
"formidable": "^2.0.1",
"geocodio-library-node": "^1.4.0",
"graphql": "^15.5.3",
"graphql-type-json": "^0.3.2",
"ioredis": "^4.27.9",
"mikro-orm": "^5.0.3",
"mysql": "^2.18.1",
"nodemailer": "^6.6.5",
"pg": "^8.7.1",
"redis": "^3.1.2",
"reflect-metadata": "^0.1.13",
"type-graphql": "^1.1.1",
"typeorm": "^0.2.37",
"uuid": "^8.3.2",
"yarn": "^1.22.19"
},
"mikro-orm": {
"useTsNode": true,
"configPaths": [
"./src/mikro-orm.config.ts",
"./dist/mikro-orm.config.js"
]
}
}