-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.15 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
{
"name": "mcalino",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/react": "11.11.1",
"@emotion/styled": "11.11.0",
"@mui/material": "5.15.3",
"bootstrap": "^5.0.0",
"classnames": "^2.3.1",
"esbuild": "0.19.2",
"express": "^4.21.2",
"html-react-parser": "^5.0.11",
"react": "18.2.0",
"react-bootstrap": "^2.9.2",
"react-dom": "18.2.0",
"react-scripts": "^5.0.1",
"react-tsparticles": "^1.38.0"
},
"scripts": {
"build:client": "esbuild src/index.js --bundle --outfile=build/bundle.js --loader:.js=jsx --loader:.jpeg=dataurl --loader:.webp=dataurl --loader:.html=dataurl --loader:.svg=dataurl --format=iife --minify=true",
"build:server": "esbuild backend/server.jsx --bundle --outfile=build/server.js --platform=node --loader:.jpeg=dataurl --loader:.webp=dataurl --loader:.html=dataurl --loader:.svg=dataurl --format=iife --minify=true",
"build": "npm run build:client && npm run build:server",
"start": "node build/server.js"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}