-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.11 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.11 KB
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
{
"name": "crudify-dtu",
"version": "1.2.11",
"main": "dist/index.js",
"repository": "https://github.com/abhi-824/crudify.git",
"author": "Abhi naman",
"license": "MIT",
"scripts": {
"prepare": "husky install",
"build": "yarn tsc",
"dev": "nodemon dist/cli.js \"schema.json\""
},
"dependencies": {
"@prisma/sdk": "^3.13.0",
"chalk": "^4.1.2",
"fs-extra": "^10.0.1",
"joi": "^17.6.0",
"module-alias": "^2.2.2",
"prettier": "^2.6.2",
"typescript": "^4.6.3"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/fs-extra": "^9.0.13",
"@types/node": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.0",
"lint-staged": "^12.3.8",
"nodemon": "^2.0.15"
},
"_moduleAliases": {
"@root": "."
},
"lint-staged": {
"*.{ts,js}": "eslint --cache --fix",
"*.{ts,js,css,md}": "prettier --write",
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
},
"bin": "dist/cli.js"
}