-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 898 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 898 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": "fullstack-javascript",
"version": "1.0.0",
"description": "Course with Samer Buna",
"main": "index.js",
"scripts": {
"start": "nodemon --exec babel-node server.js --ignore public/",
"dev": "webpack -wd"
},
"author": "Marcin Lentner",
"license": "ISC",
"dependencies": {
"express": "^4.17.1",
"mongodb": "^3.6.6",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.14.2",
"@babel/node": "^7.14.2",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.14.2",
"@babel/preset-react": "^7.13.13",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"eslint": "^7.26.0",
"eslint-plugin-react": "^7.23.2",
"nodemon": "^2.0.7",
"webpack": "^5.37.0",
"webpack-cli": "^4.7.0"
}
}