-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 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
36
37
38
39
40
{
"name": "react-starter-playground",
"version": "0.0.5",
"description": "Hand-crafted React app with starter files, examples, and Express server",
"author": "Mark M. Florida",
"license": "UNLICENSED",
"main": "src/index.js",
"type": "module",
"scripts": {
"server": "node server/run.js",
"dev": "NODE_ENV=development webpack serve --port 3030",
"build": "NODE_ENV=production webpack",
"test": "echo 'Error: no test specified' && exit 1"
},
"dependencies": {
"core-js": "~3.30.2",
"raf": "~3.4.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-router-dom": "5.3.4",
"whatwg-fetch": "~3.6.2"
},
"devDependencies": {
"@babel/core": "~7.21.8",
"@babel/preset-env": "~7.21.5",
"@babel/preset-react": "~7.18.6",
"babel-loader": "~8.3.0",
"babel-plugin-syntax-dynamic-import": "~6.18.0",
"css-loader": "~6.7.3",
"express": "~4.18.2",
"html-webpack-plugin": "~5.5.1",
"mini-css-extract-plugin": "~2.7.5",
"sass": "~1.62.1",
"sass-loader": "~13.2.2",
"style-loader": "~3.3.2",
"webpack": "~5.82.0",
"webpack-cli": "~4.10.0",
"webpack-dev-server": "~4.15.0"
}
}