-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 841 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
{
"name": "reddit-clone-server",
"scripts": {
"watch": "tsc -w",
"dev": "nodemon dist/index.js",
"start": "node dist/index.js",
"start2": "ts-node src/index.ts"
},
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:dhimashary/reddit-clone-server.git",
"author": "dhimashary <[email protected]>",
"license": "MIT",
"dependencies": {
"@mikro-orm/cli": "^4.0.0-alpha.0",
"@mikro-orm/core": "^4.0.0-alpha.0",
"@mikro-orm/migrations": "^4.0.0-alpha.0",
"@mikro-orm/postgresql": "^4.0.0-alpha.0",
"pg": "^8.3.2"
},
"devDependencies": {
"@types/node": "^10.6.0",
"ts-node": "^5.0.0",
"typescript": "^0.0.2"
},
"mikro-orm": {
"useTsNode": true,
"configPaths": [
"./src/mikro-orm.config.ts",
"./dist/mikro-orm.config.js"
]
}
}