-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.16 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
{
"name": "sequelize-find-unique",
"version": "1.2.0",
"main": "index.js",
"keywords": [
"sequelize",
"dataloader",
"unique",
"batching"
],
"description": "Query batching with dataloader for Sequelize models",
"author": "Kaltsoon",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Kaltsoon/sequelize-find-unique.git"
},
"bugs": {
"url": "https://github.com/Kaltsoon/sequelize-find-unique/issues"
},
"scripts": {
"test": "jest",
"check": "tsc",
"lint": "eslint src",
"build": "rm -rf build && tsc --project tsconfig.build.json"
},
"dependencies": {
"@types/json-stable-stringify": "^1.0.34",
"dataloader": "^2.1.0",
"json-stable-stringify": "^1.0.1"
},
"peerDependencies": {
"sequelize": ">= 6.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.18.2",
"@babel/preset-typescript": "^7.17.12",
"@types/jest": "^27.5.1",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"eslint": "^8.16.0",
"jest": "^28.1.0",
"sequelize": "^6.20.1",
"sqlite3": "^5.0.8",
"typescript": "^4.7.2"
}
}