-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1019 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 1019 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": "react-class-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",
"dependencies": {
"compression": "^1.8.1",
"express": "^5.1.0",
"express-handlebars": "^8.0.1",
"serve-favicon": "^2.5.1"
},
"devDependencies": {
"@babel/core": "^7.28.4",
"@babel/preset-react": "^7.27.1",
"@eslint/js": "^10.0.1",
"babel-loader": "^10.0.0",
"eslint": "^10.0.0",
"globals": "^17.3.0",
"nodemon": "^3.1.10",
"webpack": "^5.102.1",
"webpack-cli": "^6.0.1"
}
}