-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.72 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
62
63
64
65
66
67
68
69
{
"name": "@damzoindistress/permissions-builder",
"version": "0.1.0",
"scripts": {
"clean": "rimraf dist",
"prebuild": "npm run clean",
"dev": "blitz dev",
"build": "npx tsc -p tsconfig.library.json",
"prepublishOnly": "npm run build",
"postversion": "git push --follow-tags",
"lint": "eslint --ignore-path .gitignore --ext .js,.ts,.tsx .",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest",
"prepare": "husky install"
},
"main": "dist/src/index.js",
"files": [
"/dist"
],
"types": "dist/src/index.d.ts",
"prettier": {
"semi": true,
"printWidth": 100
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"@casl/ability": "^6.5.0"
},
"peerDependencies": {
"zod": "^3.17.3"
},
"devDependencies": {
"@blitzjs/next": "^2.0.0-beta.32",
"@next/bundle-analyzer": "12.0.8",
"@testing-library/jest-dom": "5.16.3",
"@types/del": "4.0.0",
"@types/fs-extra": "11.0.1",
"@types/node": "18.11.9",
"@types/react": "18.0.25",
"@types/tmp": "0.2.3",
"@typescript-eslint/eslint-plugin": "5.30.5",
"@vitejs/plugin-react": "2.2.0",
"blitz": "2.0.0-beta.32",
"eslint": "8.27.0",
"eslint-config-next": "12.3.1",
"eslint-config-prettier": "8.5.0",
"fs-extra": "11.1.1",
"husky": "8.0.2",
"jsdom": "20.0.3",
"lint-staged": "13.0.3",
"minimist": "^1.2.5",
"next": "13.4.5",
"prettier": "^2.7.1",
"pretty-quick": "3.1.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"rimraf": "5.0.1",
"ts-node": "10.9.1",
"typescript": "^4.8.4",
"vite-tsconfig-paths": "3.6.0",
"vitest": "0.25.3",
"zod": "3.22.2"
},
"private": false
}