-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.01 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
{
"name": "learn-fullstack-javascript",
"version": "1.0.0",
"description": "For an up-to-date configuration guide: [jscomplete.com/reactful](https://jscomplete.com/reactful)",
"main": "index.js",
"scripts": {
"start": "nodemon --exec babel-node server.js --ignore public/",
"dev": "webpack -w"
},
"author": "",
"license": "ISC",
"dependencies": {
"ajv": "^8.8.2",
"axios": "^1.4.0",
"ejs": "^3.1.9",
"express": "^4.18.2",
"mongodb": "^5.5.0",
"node-sass-middleware": "^1.0.1",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/node": "^7.20.7",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"babel-eslint": "^10.1.0",
"babel-loader": "^9.1.2",
"eslint": "^8.41.0",
"eslint-plugin-react": "^7.32.2",
"nodemon": "^2.0.22",
"webpack": "^5.83.1",
"webpack-cli": "^5.1.1"
}
}