-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.12 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
{
"name": "arkhi",
"description": "Islands architecture based meta framework",
"scripts": {
"dev": "npm run server",
"prod": "npm run build && npm run server:prod",
"build": "vite build",
"build:arkhi": "npm run build -w ./arkhi",
"server": "ts-node server.ts",
"server:prod": "cross-env NODE_ENV=production ts-node server.ts"
},
"dependencies": {
"@mdx-js/mdx": "^2.3.0",
"@trpc/client": "^10.37.1",
"@trpc/server": "^10.37.1",
"@types/compression": "^1.7.2",
"@types/node": "^18.11.9",
"@types/react": "^18.0.8",
"@types/react-dom": "^18.0.3",
"@vitejs/plugin-react": "^3.0.0",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
"express": "^4.18.1",
"gray-matter": "^4.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remark-gfm": "^4.0.0",
"sirv": "^2.0.2",
"superjson": "^1.13.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"vike": "^0.4.92",
"vite": "^4.0.3",
"zod": "^3.22.2"
},
"license": "MIT",
"type": "module",
"devDependencies": {
"@types/express": "^4.17.18"
},
"workspaces": [
"arkhi"
]
}