-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 854 Bytes
/
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
{
"name": "poclux",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"db:sync": "mikro-orm schema:update --run",
"start": "nodemon ./src/index.ts",
"format": "prettier --write \"src/**/*.ts\""
},
"devDependencies": {
"@mikro-orm/cli": "^5.4.2",
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.14",
"@types/node": "^18.8.3",
"@types/uuid": "^8.3.4",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"@mikro-orm/core": "^5.4.2",
"@mikro-orm/sqlite": "^5.4.2",
"body-parser": "^1.20.1",
"express": "^4.18.1",
"express-promise-router": "^4.1.1",
"uuid": "^9.0.0"
},
"mikro-orm": {
"useTsNode": true,
"configPaths": [
"./src/mikro-orm.config.ts"
]
}
}