-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.19 KB
/
package.json
File metadata and controls
43 lines (43 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
34
35
36
37
38
39
40
41
42
43
{
"name": "ssr-new",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev:server": "nodemon --watch build --exec \"node ./build/bundle.js\"",
"dev:build-server": "webpack --config ./webpack.server.js --watch",
"dev:build-client": "webpack --config ./webpack.client.js --watch",
"dev": "npm-run-all --parallel dev:*"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@reduxjs/toolkit": "^2.8.2",
"@tailwindcss/postcss": "^4.1.12",
"axios": "^1.11.0",
"express": "^5.1.0",
"mini-css-extract-plugin": "^2.9.4",
"nodemon": "^3.1.10",
"npm-run-all": "^4.1.5",
"postcss": "^8.5.6",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-redux": "^9.2.0",
"react-router": "^7.7.1",
"serialize-javascript": "^6.0.2",
"tailwindcss": "^4.1.12"
},
"devDependencies": {
"@babel/core": "^7.28.0",
"@babel/preset-env": "^7.28.0",
"@babel/preset-react": "^7.27.1",
"babel-loader": "^10.0.0",
"css-loader": "^7.1.2",
"postcss-loader": "^8.1.1",
"webpack": "^5.101.0",
"webpack-cli": "^6.0.1",
"webpack-merge": "^6.0.1",
"webpack-node-externals": "^3.0.0"
}
}