-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.35 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
50
{
"name": "@krsbx/prisma-fqp",
"version": "0.2.8",
"description": "Filter Query Parser for Prisma ORM",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "nodemon src/index.ts",
"prepare": "husky install",
"test": "jest --verbose",
"test:dev": "jest --watchAll --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/krsbx/filter-query-parser.git"
},
"keywords": [],
"author": "krsbx",
"license": "MIT",
"bugs": {
"url": "https://github.com/krsbx/filter-query-parser/issues"
},
"homepage": "https://github.com/krsbx/filter-query-parser#readme",
"dependencies": {
"filter-query-parser": "^2.2.0",
"moment": "^2.29.4"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"jest": "^27.5.1",
"lint-staged": "^13.0.3",
"nodemon": "^2.0.15",
"prettier": "^2.6.1",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}