-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.64 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.64 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
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "sequelize-guard-monorepo",
"description": "Monorepo for Sequelize guard: An Authorization Library for Sequelize",
"version": "0.0.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/lotivo/sequelize-guard.git"
},
"author": {
"name": "Pankaj Vaghela",
"email": "vpankaj1998official@gmail.com"
},
"engines": {
"node": ">=22.17.1"
},
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "nx run sequelize-guard:build",
"dev": "nx run sequelize-guard:dev",
"typecheck": "nx run sequelize-guard:typecheck",
"test": "nx run sequelize-guard:test",
"test:watch": "nx run sequelize-guard:test:watch",
"test:ui": "nx run sequelize-guard:test:ui",
"test:coverage": "nx run sequelize-guard:test:coverage",
"lint": "nx run sequelize-guard:lint",
"lint:fix": "nx run sequelize-guard:lint:fix",
"check:prettier": "nx run sequelize-guard:check:prettier",
"format:prettier": "nx run sequelize-guard:format:prettier",
"format:staged": "prettier --write",
"lint:staged": "eslint --fix --max-warnings 0",
"lint:staged:js": "eslint --fix",
"pre-commit": "yarn lint-staged && tsc --noEmit",
"affected:lint": "nx affected -t lint",
"affected:test": "nx affected -t test",
"affected:build": "nx affected -t build",
"docs:generate": "node scripts/generate-api-docs.mjs"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@nx/eslint": "22.1.1",
"@nx/js": "22.1.1",
"@nx/node": "22.1.1",
"@nx/vite": "22.1.1",
"@nx/web": "22.1.1",
"@swc-node/register": "~1.9.1",
"@swc/core": "~1.5.7",
"@swc/helpers": "~0.5.11",
"@types/lodash": "^4.17.20",
"@types/node": "^24.10.1",
"@typescript-eslint/eslint-plugin": "^8.46.4",
"@typescript-eslint/parser": "^8.46.4",
"@vitest/coverage-v8": "4.0.9",
"@vitest/ui": "^4.0.9",
"baseline-browser-mapping": "^2.8.32",
"esdoc": "^1.1.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^61.2.1",
"globals": "^16.5.0",
"husky": "^9.1.7",
"jiti": "2.4.2",
"lint-staged": "^16.2.6",
"nx": "22.1.1",
"nyc": "^17.1.0",
"prettier": "^3.6.2",
"rollup": "^4.53.3",
"sqlite3": "^5.1.7",
"tslib": "^2.3.0",
"typedoc": "^0.28.2",
"typedoc-plugin-markdown": "^4.9.0",
"typescript": "^5.9.3",
"vite": "^7.2.2",
"vite-plugin-dts": "^4.5.4",
"vite-plugin-static-copy": "^3.1.4",
"vitest": "^4.0.9"
},
"nx": {}
}