-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 977 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 977 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
{
"name": "reactreviewdogs",
"version": "1.0.0",
"description": "A React Review using dog breed data courtesy of https://www.thedogapi.com/",
"main": "index.js",
"scripts": {
"test": "test",
"start": "nodemon server/index.js",
"build": "webpack --config ./webpack.config.js --mode development -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ajmunoz411/ReactReviewDogs.git"
},
"author": "Andrew Munoz",
"license": "ISC",
"bugs": {
"url": "https://github.com/ajmunoz411/ReactReviewDogs/issues"
},
"homepage": "https://github.com/ajmunoz411/ReactReviewDogs#readme",
"dependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"babel-loader": "^8.2.2",
"express": "^4.17.1",
"morgan": "^1.10.0",
"nodemon": "^2.0.12",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"webpack": "^5.50.0",
"webpack-cli": "^4.8.0"
}
}