-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 4.02 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 4.02 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "thespot",
"version": "1.0.0",
"description": "The Spot is a revolutionary application that makes getting together with friends easy. Don't know what to do Friday night? Check out our map of local hot spots and events happening near you. Scroll though user reels to see where things are happening and what looks fun. The Spot is a great tool for bars, music venues, festivals or any event planner/business to promote their events to users who looking for events to attend.",
"main": "index.js",
"scripts": {
"start": "nodemon server/app.ts",
"seed": "node ./server/db/seed.ts",
"test": "jest",
"build": "webpack --mode=production --node-env=production",
"build:dev": "webpack --mode=development -w",
"build:prod": "webpack --config webpack.prod.js",
"watch": "webpack --watch",
"serve": "webpack serve",
"start:prod": "node built/server/index.js",
"build:server": "tsc -p tsconfig-server.json",
"pm2": "pm2 start built/server/app.js",
"remove": "rimraf ./built"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.22.10",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.3",
"@mui/material": "^5.14.3",
"@react-oauth/google": "^0.11.1",
"@reduxjs/toolkit": "^1.9.5",
"@types/dotenv-webpack": "^7.0.4",
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.7",
"@types/mapbox-gl": "^2.7.13",
"@types/passport": "^1.0.12",
"@types/passport-google-oauth20": "^2.0.11",
"@types/react": "^18.2.18",
"@types/react-dom": "^18.2.7",
"@types/react-redux": "^7.1.25",
"@types/redux": "^3.6.0",
"@types/redux-logger": "^3.0.9",
"@types/redux-thunk": "^2.1.0",
"axios": "^1.4.0",
"cloudinary": "^1.40.0",
"core-js": "^3.32.1",
"dayjs": "^1.11.9",
"dotenv": "^16.3.1",
"dotenv-webpack": "^8.0.1",
"express": "^4.18.2",
"express-session": "^1.17.3",
"mapbox-gl": "^2.15.0",
"memorystore": "^1.6.7",
"multer": "^1.4.5-lts.1",
"mysql2": "^3.6.0",
"nodemon": "^3.0.1",
"passport": "^0.6.0",
"passport-google-oauth20": "^2.0.0",
"react": "^18.2.0",
"react-cool-onclickoutside": "^1.7.0",
"react-error-overlay": "^6.0.11",
"react-geocode": "^0.2.3",
"react-google-button": "^0.7.2",
"react-map-gl": "^7.1.5",
"react-places-autocomplete": "^7.3.0",
"react-player": "^2.12.0",
"react-redux": "^8.1.2",
"react-router": "^6.14.2",
"react-router-dom": "^6.14.2",
"react-speech-recognition": "^3.10.0",
"react-webcam": "^7.1.1",
"redux": "^4.2.1",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.4.2",
"sequelize": "^6.32.1",
"sequelize-typescript": "^2.1.5",
"socket.io": "^4.7.2",
"socket.io-client": "^4.7.2",
"swiper": "^10.2.0",
"use-places-autocomplete": "^4.0.1",
"use-supercluster": "^0.4.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/preset-typescript": "^7.22.5",
"@types/express-session": "^1.17.7",
"@types/jquery": "^3.5.16",
"@types/node": "^20.4.7",
"@types/react-geocode": "^0.2.1",
"@types/react-places-autocomplete": "^7.2.9",
"@types/react-speech-recognition": "^3.9.2",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"@webpack-cli/generators": "^3.0.7",
"autoprefixer": "^10.4.14",
"css-loader": "^6.8.1",
"cypress": "^12.17.3",
"eslint": "^8.46.0",
"eslint-plugin-react": "^7.33.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.3",
"jest": "^29.6.2",
"mini-css-extract-plugin": "^2.7.6",
"postcss": "^8.4.27",
"postcss-loader": "^7.3.3",
"prettier": "^3.0.1",
"style-loader": "^3.3.3",
"ts-loader": "^9.4.4",
"typescript": "^5.1.6",
"url-loader": "^4.1.1",
"webpack": "^5.88.2",
"webpack-bundle-analyzer": "^4.9.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}