-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 887 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 887 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
30
31
32
33
34
35
{
"name": "client",
"version": "1.0.0",
"description": "",
"main": "webpack.config.js",
"scripts": {
"react-dev": "webpack --mode development --watch",
"test": "jest",
"start": "nodemon server.js",
"build": "webpack",
"watchbuild": "nodemon --watch ./ --ext js,css --ignore dist --exec \"npm run build\""
},
"author": "",
"license": "ISC",
"devDependencies": {
"jest": "^27.4.7",
"webpack": "^5.51.1",
"webpack-cli": "^4.8.0"
},
"dependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"babel-loader": "^8.2.2",
"css-loader": "^6.4.0",
"dotenv-webpack": "^7.0.3",
"express": "^4.17.1",
"nodemon": "^2.0.12",
"pg": "^8.7.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6.2.1",
"style-loader": "^3.3.0"
}
}