-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.4 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.4 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "monarch-kit",
"version": "0.1.0",
"description": "Development kit for Monarch ORM",
"private": false,
"type": "module",
"bin": {
"monarch": "./dist/index.js"
},
"exports": {
"./config": {
"types": "./dist/config.d.ts",
"default": "./dist/config.js"
}
},
"scripts": {
"cli:build": "tsup cli/index.ts --clean --format esm",
"cli:dev": "tsx cli/index.ts",
"lib:build": "tsup lib/config.ts --dts --format esm",
"ui:build": "react-router build",
"ui:dev": "react-router dev --port 6543",
"ui:preview": "react-router-serve ./dist/ui/server/index.js",
"build": "npm run cli:build && npm run lib:build && npm run ui:build",
"start": "node dist/index.js",
"release": "npm run build && changeset publish",
"check": "npm run lint && npm run format && react-router typegen && tsc",
"format": "prettier . --check",
"format:fix": "prettier . --write",
"lint": "eslint",
"lint:fix": "eslint --write",
"watch": "vitest",
"test": "vitest run"
},
"keywords": [
"monarch",
"monarch-orm",
"mongodb",
"odm",
"orm",
"mongo"
],
"author": "Eric Afes <eriicafes@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/eriicafes/monarch-kit.git"
},
"bugs": {
"url": "https://github.com/eriicafes/monarch-kit/issues"
},
"homepage": "https://github.com/eriicafes/monarch-kit#readme",
"peerDependencies": {
"monarch-orm": ">= 0.8"
},
"dependencies": {
"@clack/prompts": "^0.10.0",
"@radix-ui/react-checkbox": "^1.1.4",
"@radix-ui/react-collapsible": "^1.1.3",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@radix-ui/react-menubar": "^1.1.6",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-tooltip": "^1.1.8",
"@react-router/express": "^7.2.0",
"@react-router/node": "^7.2.0",
"@react-router/serve": "^7.2.0",
"@tanstack/react-table": "^8.21.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "1.0.0",
"commandstruct": "^0.3.1",
"compression": "^1.8.0",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"glob": "^11.0.1",
"hollywood-di": "^0.6.1",
"isbot": "^5.1.23",
"jiti": "^2.4.2",
"lucide-react": "^0.475.0",
"morgan": "^1.10.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router": "^7.2.0",
"react-router-action": "^1.0.2",
"remix-themes": "^2.0.4",
"tailwind-merge": "^3.0.2",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.24.2"
},
"devDependencies": {
"@changesets/cli": "^2.28.1",
"@eslint/js": "^9.21.0",
"@react-router/dev": "^7.2.0",
"@react-router/fs-routes": "^7.2.0",
"@types/compression": "^1.7.5",
"@types/express": "^5.0.0",
"@types/morgan": "^1.9.9",
"@types/node": "^22.13.5",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"autoprefixer": "^10.4.20",
"eslint": "^9.21.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.2.0",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^3.4.17",
"tsup": "^8.4.0",
"tsx": "^4.19.3",
"typescript": "^5.7.3",
"typescript-eslint": "^8.26.0",
"vite": "^6.2.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.7"
}
}