-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.39 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
{
"name": "@100k/phala-watchdog-server",
"version": "0.1.0",
"private": true,
"scripts": {
"prod": "NODE_ENV=production NODE_OPTIONS='--unhandled-rejections=strict' ts-node --transpile-only src/bootstrap.ts",
"dev": "NODE_ENV=development NODE_OPTIONS='--unhandled-rejections=strict' ts-node --transpile-only src/bootstrap.ts",
"watch": "NODE_ENV=development NODE_OPTIONS='--unhandled-rejections=strict' ts-node-dev -r tsconfig-paths/register --respawn src/bootstrap.ts",
"inspect": "NODE_ENV=development NODE_OPTIONS='--inspect --unhandled-rejections=strict' ts-node src/bootstrap.ts",
"test": "NODE_OPTIONS='--unhandled-rejections=strict' jest",
"postinstall": "patch-package"
},
"workspaces": [
"src/core/*",
"src/modules/*"
],
"dependencies": {
"@mikro-orm/cli": "^5.4.2",
"patch-package": "^6.4.7",
"postinstall-postinstall": "^2.1.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.0.0",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
},
"devDependencies": {
"@types/jest": "^28.1.6",
"jest": "^28.1.3",
"ts-jest": "^28.0.5",
"ts-node-dev": "^2.0.0"
},
"mikro-orm": {
"useTsNode": true,
"configPaths": [
"./src/etc/services/orm.ts"
]
},
"engines": {
"node": ">=16.15.0"
}
}