forked from Tool-Kid/express-query-adapter
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
46 lines (46 loc) · 970 Bytes
/
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": "typeorm-server-query-builder",
"version": "1.3.1",
"description": "Easily transform an url query into TypeORM query",
"scripts": {
"build": "tsc -p .",
"build:watch": "tsc -p . --watch",
"test": "jest",
"test:cov": "jest --coverage",
"test:watch": "jest --watch",
"codecov": "codecov"
},
"keywords": [
"typeorm",
"express",
"query string",
"query",
"builder",
"nestjs",
"nest"
],
"author": "rjlopezdev",
"contributors": [
"justkey007"
],
"license": "MIT",
"devDependencies": {
"@types/jest": "^24.9.0",
"@types/node": "^13.1.8",
"body-parser": "^1.18.3",
"codecov": "^3.6.1",
"express": "^4.17.1",
"jest": "^25.2.4",
"pg": "^7.17.1",
"prettier": "^1.19.1",
"supertest": "^4.0.2",
"ts-jest": "^25.3.0",
"typescript": "^3.7.5"
},
"dependencies": {
"typeorm": "^0.2.25"
},
"peerDependencies": {
"typeorm": "^0.2.25"
}
}