-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
49 lines (49 loc) · 1.33 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
{
"version": "0.0.1",
"description": "A demo server for the SDK generator",
"author": "Lonestone <contact@lonestone.studio>",
"private": true,
"license": "MIT",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"db:sync": "npx mikro-orm schema:update --run"
},
"mikro-orm": {
"useTsNode": true,
"configPaths": [
"./src/mikro-orm.config.ts",
"./dist/mikro-orm.config.js"
]
},
"dependencies": {
"@mikro-orm/core": "^4.5.9",
"@mikro-orm/nestjs": "^4.3.0",
"@mikro-orm/sqlite": "^4.5.9",
"@nestjs/common": "^8.0.6",
"@nestjs/core": "^8.0.6",
"@nestjs/platform-express": "^8.0.6",
"class-transformer": "^0.4.0",
"class-validator": "^0.13.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@mikro-orm/cli": "^4.5.9",
"@nestjs/cli": "^8.1.1",
"@types/express": "^4.17.13",
"@types/node": "^16.7.6",
"@types/uuid": "^8.3.1",
"prettier": "^2.3.2",
"ts-loader": "^9.2.5",
"ts-node": "^10.2.1",
"tsconfig-paths": "^3.11.0",
"typescript": "^4.4.2"
}
}