-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
65 lines (65 loc) · 1.7 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
{
"name": "test-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"watch": "tsc -w",
"start": "ts-node index.ts",
"dev": "nodemon dist/index.js",
"create:migration": "mikro-orm migration:create",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx}\"",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/connect-redis": "^0.0.17",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-fileupload": "^1.2.2",
"@types/express-session": "^1.17.4",
"@types/graphql-upload": "^8.0.11",
"@types/jsonwebtoken": "^8.5.8",
"@types/multer": "^1.4.7",
"@types/node": "^16.11.7",
"@types/redis": "^2.8.32",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"dependencies": {
"@mikro-orm/cli": "^4.5.9",
"@mikro-orm/core": "^4.5.9",
"@mikro-orm/migrations": "^4.5.9",
"@mikro-orm/postgresql": "^4.5.9",
"apollo-server-core": "^3.5.0",
"apollo-server-express": "^3.5.0",
"argon2": "^0.28.2",
"aws-sdk": "^2.1076.0",
"connect-redis": "^6.0.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-fileupload": "^1.3.1",
"express-session": "^1.17.2",
"graphql": "15.3.0",
"graphql-upload": "^13.0.0",
"husky": "^8.0.1",
"ibm-watson": "^6.2.2",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.4",
"pg": "^8.7.1",
"prettier": "^2.6.2",
"prettierrc": "^0.0.0-5",
"redis": "^3.1.2",
"type-graphql": "^1.1.1",
"typeorm": "^0.2.43"
},
"mikro-orm": {
"useTsNode": true,
"configPaths": [
"./src/mikro-orm.config.ts",
"./dist/mikro-orm.config.js"
]
}
}