-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "charos-garden",
"version": "1.0.0",
"description": "Project based about a flower shop",
"main": "index.js",
"scripts": {
"test": "webpack --config webpack.config.js --mode development",
"start": "webpack-dev-server --mode development --open",
"build": "node scripts/create-env.js && webpack --mode production",
"server": "json-server --watch ./src/utils/plantsBd.json",
"dev": "concurrently \"npm run server\" \"npm run start\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/pcabreram1234/charos-garden.git"
},
"keywords": [
"charos",
"garden",
"flower",
"flowers",
"react",
"reactjs",
"pink"
],
"author": "Phillip Cabrera",
"license": "MIT",
"bugs": {
"url": "https://github.com/pcabreram1234/charos-garden/issues"
},
"homepage": "https://github.com/pcabreram1234/charos-garden#readme",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-react": "^7.14.5",
"babel": "^6.23.0",
"babel-loader": "^8.2.3",
"babel-polyfill": "^6.26.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^9.1.0",
"css-loader": "^6.5.1",
"eslint-plugin-react-hooks": "^4.2.0",
"html-loader": "^3.0.1",
"html-webpack-plugin": "^5.5.0",
"json-server": "^0.16.3",
"mini-css-extract-plugin": "^2.4.4",
"react": "^17.0.2",
"react-dom": "17.0.2",
"style-loader": "^3.3.1",
"webpack": "^5.64.0",
"webpack-cli": "^4.9.1",
"webpack-dev-middleware": "^5.2.1",
"webpack-dev-server": "^4.5.0",
"webpack-subresource-integrity": "^5.1.0"
},
"dependencies": {
"@popperjs/core": "^2.9.3",
"antd": "^4.16.13",
"bootstrap": "^5.1.0",
"concurrently": "^6.3.0",
"dotenv-webpack": "^7.1.0",
"react-popper": "^2.2.5",
"react-responsive": "^9.0.0-beta.6",
"react-router-dom": "^5.2.0",
"reactstrap": "^8.9.0",
"request": "^2.79.0"
}
}