-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.32 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.32 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "LazyBrew",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --verbose",
"start": "nodemon server/server.js",
"build": "NODE_ENV=production webpack",
"watch": "webpack --watch",
"dev": "NODE_ENV=development webpack serve --open",
"devTest": "cross-env NODE_ENV=development webpack serve --open & nodemon server/server.js"
},
"nodemonConfig": {
"ignore": [
"build",
"client",
"__tests__"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/convenientFinds/LazyBrew"
},
"author": "convenientFinds",
"license": "ISC",
"bugs": {
"url": "https://github.com/convenientFinds/LazyBrew/"
},
"homepage": "https://github.com/convenientFinds/LazyBrew#readme",
"jest": {
"preset": "@shelf/jest-mongodb"
},
"dependencies": {
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@material-ui/core": "^4.12.4",
"@mui/material": "^5.10.6",
"@react-oauth/google": "^0.2.8",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"axios": "^0.27.2",
"cors": "^2.8.5",
"express": "^4.18.1",
"firebaseui": "^6.0.1",
"geodist": "^0.2.1",
"google-auth-library": "^8.5.2",
"install": "^0.13.0",
"jwt-decode": "^3.1.2",
"mongodb": "^4.10.0",
"mongoose": "^6.4.7",
"nanoid": "^4.0.0",
"npm": "^8.19.2",
"path": "^0.12.7",
"pg": "^8.8.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-google-login": "^5.2.2",
"react-redux": "^8.0.2",
"react-router": "^6.4.0",
"react-router-dom": "^6.4.0",
"redux": "^4.2.0"
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@babel/preset-react": "^7.18.6",
"@shelf/jest-mongodb": "^4.1.0",
"babel-loader": "^8.2.5",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.0.3",
"jest-environment-jsdom": "^29.0.3",
"nodemon": "^2.0.19",
"redux-devtools-extension": "^2.13.9",
"sass": "^1.54.0",
"sass-loader": "^13.0.2",
"style-loader": "^3.3.1",
"supertest": "^6.2.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3"
}
}