-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 972 Bytes
/
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
{
"name": "frontend-test",
"version": "1.0.0",
"description": "Prueba Frontend",
"main": "index.js",
"scripts": {
"start": "node src/index.js ",
"dev": "nodemon src/index.js ",
"webpack": "webpack --mode development --watch",
"build": "webpack --mode production"
},
"author": "Jorge Arturo Naranjo Hidlgo",
"license": "ISC",
"dependencies": {
"@material-ui/core": "^3.9.3",
"@material-ui/styles": "^4.4.3",
"express": "^4.16.3",
"morgan": "^1.9.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-redux": "^7.1.3",
"react-router-dom": "^5.1.2",
"react-scripts": "3.2.0",
"redux": "^4.0.4"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"css-loader": "^2.1.1",
"nodemon": "^1.17.5",
"style-loader": "^0.23.1",
"webpack": "^4.11.1",
"webpack-cli": "^3.3.10"
}
}