-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 886 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 886 Bytes
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
{
"name": "experiment-react-18",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "NODE_ENV=development npx webpack --config webpack.config.js && NODE_ENV=development npx concurrently -c yellow,blue -n Compiler,Server \"webpack --watch --config webpack.config.js\" \"node --watch dist/server/index.js\"",
"start": "NODE_ENV=production webpack --config webpack.config.js && node dist/server/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"express": "4.18.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"sass": "1.62.1"
},
"devDependencies": {
"@swc/cli": "0.1.62",
"@swc/core": "1.3.44",
"@types/react": "18.0.31",
"@types/react-dom": "18.0.11",
"concurrently": "8.0.1",
"swc-loader": "0.2.3",
"webpack": "5.77.0",
"webpack-cli": "5.0.1"
}
}