forked from Five-G-uys/Take-a-Hike
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
90 lines (90 loc) · 2.74 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
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
87
88
89
90
{
"name": "take-a-hike",
"version": "1.0.0",
"description": "Trail hiking app for Louisiana",
"main": "webpack.config.js",
"scripts": {
"dev": "webpack --mode development",
"prod": "webpack --mode production",
"start": "nodemon server/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"seed": "node server/database/seed.js",
"analyze": "webpack --mode production --profile --json > stats.json && webpack-bundle-analyzer stats.json"
},
"repository": {
"url": "git+https://github.com/Rmachirica/Take-a-Hike.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Rmachirica/Take-a-Hike/issues"
},
"homepage": "https://github.com/Rmachirica/Take-a-Hike#readme",
"dependencies": {
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11.8.1",
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@material/fab": "^13.0.0",
"@mui/icons-material": "^5.5.1",
"@mui/material": "^5.5.3",
"axios": "^1.6.2",
"babel-loader": "^8.2.4",
"bootstrap": "^5.3.2",
"bulma": "^0.9.3",
"cloudinary": "^1.29.0",
"cloudinary-react": "^1.7.2",
"cookie-session": "^2.0.0",
"cors": "^2.8.5",
"csv-parse": "^5.0.4",
"csv-parser": "^3.0.0",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-session": "^1.17.2",
"file-loader": "^6.2.0",
"he": "^1.2.0",
"mkdirp": "^3.0.1",
"moment": "^2.29.4",
"mysql2": "^2.3.3",
"node-fetch": "^3.3.2",
"node-polyfill-webpack-plugin": "^1.1.4",
"nodemon": "^2.0.15",
"passport": "^0.6.0",
"passport-google-oauth20": "^2.0.0",
"path-browserify": "^1.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-places-autocomplete": "^7.3.0",
"react-router-dom": "^6.2.2",
"sequelize": "^6.17.0",
"style-loader": "^3.3.1",
"webpack": "^5.70.0",
"webpack-bundle-analyzer": "^4.10.1"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.8",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"@babel/preset-react": "^7.23.3",
"css-loader": "^6.7.1",
"eslint": "^8.54.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"html-webpack-plugin": "^5.5.0",
"sequelize-cli": "^6.6.2",
"terser-webpack-plugin": "^5.3.9",
"webpack-bundle-analyzer": "^4.10.1",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.15.1"
},
"browser": {
"fs": false
}
}