-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.7 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
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "javascript-final-task",
"version": "1.0.0",
"description": "Repository to save the final task of the practical javascript course",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --open --mode development",
"build": "node ./scripts/create-env.js && webpack --mode production --config webpack.config.js",
"server": "json-server --watch ./src/utils/plantsBd.json"
},
"repository": {
"type": "git",
"url": "https://github.com/pcabreram1234/javaScriptPratice-final-task.git"
},
"keywords": [
"javaScript",
"platzi",
"practico"
],
"author": "Phillip Cabrera",
"license": "MIT",
"bugs": {
"url": "https://github.com/pcabreram1234/javaScriptPratice-final-task/issues"
},
"homepage": "https://github.com/pcabreram1234/javaScriptPratice-final-task#readme",
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"@webpack-cli/serve": "^1.6.1",
"babel": "^6.23.0",
"babel-loader": "^8.2.2",
"babel-polyfill": "^6.26.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.2.0",
"eslint-plugin-react-hooks": "^4.2.0",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.2",
"json-server": "^0.16.3",
"mini-css-extract-plugin": "^2.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.0.0"
},
"dependencies": {
"dotenv-webpack": "^7.1.0",
"joi": "^17.6.0",
"react-router-dom": "^6.2.2"
}
}