forked from The-KPCP-Hotel/BUBBLR
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.34 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
45
46
47
48
49
50
51
52
{
"name": "bubblr",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack -w",
"start": "nodemon server/index.js",
"lint": "eslint --fix --ext .js,.jsx .",
"prod": "webpack && node server/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.23.9",
"@babel/core": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"@babel/preset-react": "^7.23.3",
"babel-loader": "^9.1.3",
"eslint-config-airbnb": "^19.0.4",
"html-loader": "^5.0.0",
"html-webpack-plugin": "^5.6.0",
"mysql2": "^3.9.2",
"nodemon": "^3.1.0",
"sequelize": "^6.37.1",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"axios": "^1.6.8",
"bootstrap": "^5.3.3",
"cookie-parser": "^1.4.6",
"css-loader": "^6.10.0",
"dotenv": "^16.4.5",
"ejs": "^3.1.9",
"express": "^4.18.3",
"express-session": "^1.18.0",
"lodash": "^4.17.21",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"prettier": "^3.2.5",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-bootstrap": "^2.10.2",
"react-dom": "^18.2.0",
"react-router-dom": "^6.22.3",
"sequelize": "^6.37.1",
"style-loader": "^3.3.4"
}
}