-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 823 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 823 Bytes
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
{
"name": "orm-benchmarking",
"version": "1.0.0",
"description": "ORM benchmarking experiment comparing TypeORM, Sequelize, Prisma, and Objection.js",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node index.js",
"benchmark": "node benchmark.js",
"setup": "node setup.js",
"clean": "rm -rf databases/*.db"
},
"keywords": ["orm", "benchmarking", "typeorm", "sequelize", "prisma", "objection"],
"author": "",
"license": "MIT",
"dependencies": {
"typeorm": "^0.3.20",
"sequelize": "^6.37.1",
"prisma": "^5.10.2",
"@prisma/client": "^5.10.2",
"objection": "^3.0.1",
"knex": "^3.1.0",
"sqlite3": "^5.1.7",
"reflect-metadata": "^0.2.1"
},
"devDependencies": {
"@types/node": "^20.11.24"
},
"engines": {
"node": ">=16.0.0"
}
}