-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.14 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.14 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "beastiebooze",
"version": "1.0.0",
"description": "Drinks app",
"main": "app.js",
"scripts": {
"start": "nodemon --exec babel-node server/app.js",
"build:dev": "webpack --config webpack.config.js --mode development --watch",
"build:prod": "webpack --config webpack.config.js --mode production",
"test": "echo \"Error: no test specified\" && exit 1",
"restart": "pm2 startOrRestart ecosystem.config.js --env production",
"deploy": "pm2 deploy ecosystem.config.js production",
"lint": "./node_modules/.bin/eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BiscuitBae/BeastieBooze"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/BiscuitBae/BeastieBooze/issues"
},
"homepage": "https://github.com/BiscuitBae/BeastieBooze#readme",
"dependencies": {
"@hookform/resolvers": "^2.5.2",
"@popperjs/core": "^2.9.2",
"acorn-jsx": "^5.3.1",
"axios": "^0.21.1",
"bootstrap": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"moment": "^2.29.1",
"mongoose": "^5.12.12",
"passport-google-oauth20": "^2.0.0",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-bootstrap": "^1.6.0",
"react-dom": "^17.0.2",
"react-google-login": "^5.2.2",
"react-hook-form": "^7.7.1",
"react-router-bootstrap": "^0.25.0",
"react-router-dom": "^5.2.0",
"resolve-cwd": "^3.0.0",
"sweetalert2": "^11.0.16",
"yup": "^0.32.9"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/eslint-parser": "^7.14.4",
"@babel/node": "^7.14.2",
"@babel/preset-env": "^7.14.4",
"@babel/preset-react": "^7.13.13",
"babel-loader": "^8.2.2",
"eslint": "^7.27.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.1",
"nodemon": "^2.0.7",
"pm2": "^4.5.6",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2"
}
}