-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
61 lines (61 loc) · 1.7 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
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@premieroctet/next-crud",
"version": "4.0.1",
"description": "Next.js CRUD routes generation helper",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": "https://github.com/premieroctet/next-crud.git",
"author": "Hugo FOYART <hfoyart@premieroctet.com>",
"license": "MIT",
"private": false,
"scripts": {
"build": "yarn clean && ./node_modules/.bin/tsc",
"clean": "rimraf dist",
"lint": "eslint ./src",
"prepublishOnly": "yarn lint && yarn build",
"test": "jest -i",
"test:prepare": "yarn add @prisma/client@^5 && cd __tests__/adapters/prisma && npx prisma@5 db push",
"watch": "tsc --watch"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^29.5.12",
"@types/lodash.isobject": "^3.0.6",
"@types/lodash.set": "^4.3.6",
"@types/node": "^20.11.30",
"@types/pluralize": "^0.0.30",
"@types/qs": "^6.9.5",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"eslint": "^7.14.0",
"express": "^4.18.2",
"husky": ">=4",
"jest": "^29.7.0",
"lint-staged": ">=10",
"next": "^14.1.1",
"node-mocks-http": "^1.12.2",
"prisma-json-schema-generator": "^4.0.0",
"rimraf": "^3.0.2",
"ts-jest": "^29.1.2",
"typescript": "^5.2.2"
},
"optionalDependencies": {
"@prisma/client": "^5",
"prisma-json-schema-generator": "^3.0.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./src/*.ts": "eslint --cache --fix"
},
"dependencies": {
"lodash.isobject": "^3.0.2",
"lodash.set": "^4.3.2",
"path-to-regexp": "^6.2.0",
"pluralize": "^8.0.0",
"qs": "^6.9.4"
}
}