-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 1.1 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": "react-functional-components",
"version": "1.0.0",
"description": "A Simple Example using React apps",
"main": "./server/app.js",
"scripts": {
"buildBundle": "webpack",
"watchBundle": "webpack watch",
"heroku-postbuild": "webpack --mode production",
"nodemon": "nodemon -e js,html,css --watch ./hosted --watch ./server --watch ./hosted ./server/app.js ",
"start": "node ./server/app.js",
"pretest": "eslint ./server --fix",
"test": "echo \"Tests complete\""
},
"author": "Cody Van De Mark / Austin Willoughby",
"license": "Apache 2.0",
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"babel-loader": "^9.2.1",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.31.0",
"nodemon": "^3.1.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"body-parser": "^1.20.3",
"compression": "^1.7.4",
"express": "^4.21.1",
"express-handlebars": "^8.0.1",
"serve-favicon": "^2.5.0"
}
}