-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.19 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.19 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
32
33
{
"name": "lambda-ssr-react-app",
"version": "1.0.0",
"scripts": {
"clean": "rm -rf ./app/dist && rm -rf ./auth/dist && rm -rf ./public",
"build": "webpack --config webpack.config.cjs",
"build:dev": "dotenv -e .env -- webpack --watch --stats-error-details",
"install-deps": "npm i && npm i --prefix app && npm i --prefix auth",
"start:dev": "npm run install-deps && dotenv -e .env -- concurrently \"npm run build:dev\" \"nodemon --watch ./app/dist --exec 'node ./app/dist/server.cjs'\"",
"test": "npx playwright test"
},
"devDependencies": {
"@babel/preset-env": "^7.24.7",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@types/aws-serverless-express": "^3.3.9",
"@types/express": "^4.17.21",
"@types/node": "^20.14.10",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"babel-loader": "^9.1.3",
"concurrently": "^8.2.2",
"copy-webpack-plugin": "^12.0.2",
"dotenv-cli": "^7.4.2",
"html-webpack-plugin": "^4.5.2",
"mini-css-extract-plugin": "^2.9.0",
"nodemon": "^3.1.4",
"ts-loader": "^9.5.1",
"typescript": "^5.5.3",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4"
}
}