-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·31 lines (31 loc) · 1.03 KB
/
package.json
File metadata and controls
executable file
·31 lines (31 loc) · 1.03 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
{
"name": "frozen-bug",
"description": "Sample app that demonstrates the power of building UI components using Marko, Vite and Fastify",
"version": "1.0.0",
"dependencies": {
"@fastify/compress": "^6.1.0",
"@fastify/static": "^6.4.1",
"@marko/fastify": "^1.1.1",
"@marko/tags-api-preview": "^0.5.6",
"fastify": "^4.3.0",
"marko": "^5.21.3",
"raptor-pubsub": "^1.0.5"
},
"devDependencies": {
"@marko/compiler": "^5.22.1",
"@marko/vite": "^2.3.4",
"cross-env": "^7.0.3",
"rimraf": "^3.0.2",
"vite": "^3.0.3"
},
"private": true,
"scripts": {
"build": "rimraf dist && npm run build:server && npm run build:client",
"build:client": "cross-env NODE_ENV=production vite build",
"build:server": "cross-env NODE_ENV=production vite build --ssr src/index.js",
"dev": "node --enable-source-maps index.js",
"dev:inspect": "node --inspect --enable-source-maps index.js",
"start": "cross-env NODE_ENV=production node --enable-source-maps index.js"
},
"type": "module"
}