-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.28 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
{
"name": "db-orm-benchmarks",
"version": "0.0.1",
"type": "module",
"main": "./build/server/index.js",
"scripts": {
"build": "tsc --build",
"clean": "rimraf build",
"check": "tsc --project tsconfig.json",
"lint": "npm run check && eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"migrations:up": "node ./build/migrations/up.js",
"migrations:down": "node ./build/migrations/down.js",
"start": "npm run build && node ."
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/pg": "8.11.6",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"dotenv": "16.4.5",
"drizzle-kit": "0.19.13",
"eslint": "8.57.0",
"eslint-plugin-sort-destructure-keys": "1.6.0",
"eslint-plugin-sort-exports": "0.8.0",
"prisma": "5.13.0",
"rimraf": "5.0.5",
"typescript": "5.4.5"
},
"dependencies": {
"@js-ak/db-manager": "3.37.4",
"@js-ak/pg-migration-system": "1.0.2",
"@mikro-orm/core": "5.8.7",
"@mikro-orm/postgresql": "5.8.7",
"@prisma/client": "5.4.1",
"drizzle-orm": "0.28.6",
"knex": "3.0.1",
"kysely": "0.26.3",
"objection": "3.1.2",
"pg": "8.11.3",
"pg-hstore": "2.3.4",
"sequelize": "6.33.0",
"typeorm": "0.3.17"
}
}