-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.14 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
{
"name": "react-ssr-lambda",
"version": "1.0.0",
"license": "MIT",
"author": {
"name": "Adel Chemi",
"email": "adelchemi96@gmail.com"
},
"scripts": {
"build:client": "esbuild src/entry.client.jsx --bundle --outfile=.build/static/bundle.js",
"build:server": "swc ./src -d .build",
"build": "npm run build:server && npm run build:server",
"start": "node ./.build/entry.server.js",
"dev": "babel-watch src/entry.server.js"
},
"dependencies": {
"axios": "^1.5.0",
"cloudworker-router": "^4.1.5",
"express": "^4.18.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.15.0"
},
"devDependencies": {
"@babel/cli": "^7.22.15",
"@babel/core": "^7.22.15",
"@babel/preset-env": "^7.22.15",
"@babel/preset-react": "^7.22.15",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.82",
"@types/express": "^4.17.17",
"@types/react-router-dom": "^5.3.3",
"babel-loader": "^9.1.3",
"babel-watch": "^7.8.1",
"esbuild": "^0.19.2",
"nodemon": "^3.0.1",
"tsx": "^3.12.8",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
}
}