-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.01 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.01 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
{
"name": "more-nutrition-matcha",
"version": "1.0.0",
"type": "module",
"description": "More Nutrition Iced Matcha Latte landing page",
"main": "dist/server.js",
"scripts": {
"build:client": "esbuild src/client.jsx --bundle --outfile=public/dist/client.js --loader:.js=jsx --jsx=automatic",
"build:server": "esbuild server.js --bundle --outfile=dist/server.js --platform=node --packages=external --loader:.jsx=jsx --format=esm --jsx=automatic",
"build:static": "npm run build:client && node scripts/build-static.js",
"build": "npm run build:client && npm run build:server",
"start": "npm run build && node dist/server.js",
"dev": "npm run build && node --watch dist/server.js",
"watch": "node scripts/dev-watch.js"
},
"dependencies": {
"compression": "^1.7.4",
"express": "^4.18.2",
"gsap": "^3.14.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"chokidar": "^3.6.0",
"esbuild": "^0.19.0"
},
"engines": {
"node": ">=18.0.0"
}
}