-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.23 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
38
39
40
41
42
43
44
{
"name": "sass-gulp",
"version": "1.1.0",
"description": "A Simple Example using React apps",
"main": "./server/app.js",
"scripts": {
"webpack": "webpack",
"nodemon": "nodemon -e js,html,css --watch ./hosted --watch ./server ./server/app.js ",
"start": "node ./server/app.js",
"pretest": "eslint ./server --fix",
"test": "echo \"Tests complete\"",
"build": "gulp build",
"watch": "gulp watch",
"heroku-postbuild": "gulp herokuBuild"
},
"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",
"gulp": "^5.0.0",
"gulp-eslint-new": "^2.4.0",
"gulp-nodemon": "^2.5.0",
"gulp-sass": "^5.1.0",
"nodemon": "^3.1.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sass": "^1.81.0",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"webpack-stream": "^7.0.0"
},
"dependencies": {
"body-parser": "^1.20.3",
"compression": "^1.7.5",
"express": "^4.21.1",
"express-handlebars": "^8.0.1",
"serve-favicon": "^2.5.0"
}
}