-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 853 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 853 Bytes
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
{
"name": "pages",
"version": "0.0.0",
"type": "module",
"imports": {
"~*": "./src/*.js"
},
"scripts": {
"local": "vike dev",
"preview": "npm run build && npm run start",
"build": "vike build",
"start": "node dist/server/index.mjs",
"deploy:prod": "git branch -f release/production master && git push --force origin release/production"
},
"dependencies": {
"@photonjs/hono": "^0.1.0",
"@vitejs/plugin-react": "^5.0.0",
"color-convert": "^2.0.1",
"date-fns": "^4.2.1",
"hono": "^4.0.0",
"lodash-es": "4.x",
"markdown-to-jsx": "^7.2.0",
"modern-normalize": "^3.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-portal": "^4.2.1",
"vike": "^0.4.0",
"vike-photon": "^0.1.0",
"vike-react": "^0.6.20",
"vite": "^7.0.0",
"vite-plugin-svgr": "^4.0.0"
},
"devDependencies": {
"sass": "^1.80.0"
}
}