-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.53 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
{
"name": "metacare-takehome",
"version": "1.0.0",
"description": "Starwars API with Express, Postgres and Typescript",
"main": "index.js",
"scripts": {
"build": "tsc -p ./",
"watch": "tsc -w",
"dev": "nodemon dist/index.js",
"start": "node dist/index.js",
"dev2": "nodemon --exec ts-node src/index.ts",
"start2": "ts-node src/index.ts",
"create:migration": "mikro-orm migration:create",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/buka4rill/metacare-takehome.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/buka4rill/metacare-takehome/issues"
},
"homepage": "https://github.com/buka4rill/metacare-takehome#readme",
"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",
"axios": "^0.24.0",
"express": "^4.17.1",
"express-validator": "^6.13.0",
"pg": "^8.7.1",
"swagger-ui-express": "^4.1.6",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/express": "^4.17.13",
"@types/node": "^16.11.9",
"@types/swagger-ui-express": "^4.1.3",
"@types/yamljs": "^0.2.31",
"nodemon": "^2.0.15",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
},
"mikro-orm": {
"useTsNode": true,
"configPaths": [
"./src/mikro-orm.config.ts",
"./dist/mikro-orm.config.js"
]
}
}