-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.81 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
{
"name": "nitr",
"version": "1.0.0",
"description": "the modern, server side only web framework",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"components:generate": "node scripts/generate-component-manifest.mjs",
"components:watch": "node scripts/generate-component-manifest.mjs --watch",
"build": "npm run components:generate && tsc && vite build",
"dev": "docker compose up -d db redis && npm run components:generate && tsc && npx mikro-orm schema:fresh -r && concurrently -n manifest,tsc,node,vite \"npm run components:watch\" \"npx tsc --watch\" \"node --watch dist/index.js --dev\" \"npx vite build --watch\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/orcachillin/nitr.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"bugs": {
"url": "https://github.com/orcachillin/nitr/issues"
},
"homepage": "https://github.com/orcachillin/nitr#readme",
"devDependencies": {
"@mikro-orm/cli": "^7.1.4",
"@mikro-orm/reflection": "^7.1.4",
"@oxc-node/core": "^0.1.0",
"@types/cookie-parser": "^1.4.10",
"@types/express": "^5.0.6",
"@types/node": "^25.9.3",
"chokidar": "^5.0.0",
"concurrently": "^10.0.3",
"htmx-ext-preload": "^2.1.2",
"htmx-ext-sse": "^2.2.4",
"htmx.org": "^2.0.10",
"idiomorph": "^0.7.4",
"reflect-metadata": "^0.2.2",
"sass": "^1.101.0",
"typescript": "^6.0.3",
"vite": "^8.0.16"
},
"dependencies": {
"@kitajs/html": "^4.2.13",
"@mikro-orm/core": "^7.1.4",
"@mikro-orm/decorators": "^7.1.4",
"@mikro-orm/postgresql": "^7.1.4",
"@paralleldrive/cuid2": "^3.3.0",
"chalk": "^5.6.2",
"cookie-parser": "^1.4.7",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"redis": "^6.0.0"
}
}