-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
59 lines (59 loc) · 1.72 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
{
"name": "stooper",
"version": "1.0.0",
"description": "Our application sets out to help New Yorkers post their unwanted items anonymously and allows their fellow neighbors the ability to search for items in their specific neighborhoods.",
"main": "index.js",
"exports": "./index.js",
"scripts": {
"start": "NODE_ENV=production node server/server.js",
"build": "NODE_ENV=production webpack",
"dev": "NODE_ENV=development webpack serve --open & NODE_ENV=development nodemon server/server.js"
},
"nodemonConfig": {
"ignore": [
"build",
"client"
]
},
"author": "Robin Zhang, Cheri Friench, Justin Reyes, Chris Bock",
"license": "ISC",
"dependencies": {
"@supabase/supabase-js": "^2.38.4",
"bcryptjs": "^2.4.3",
"cookie-session": "^2.0.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"dotenv-webpack": "^8.0.1",
"express": "^4.12.3",
"jsonwebtoken": "^9.0.2",
"path": "^0.12.7",
"prop-types": "^15.8.1",
"punycode": "^2.3.1",
"react": "^18.2.0",
"react-datepicker": "^4.21.0",
"react-dom": "^18.2.0",
"react-redux": "^8.1.3",
"react-router-dom": "^6.18.0",
"react-scripts": "^5.0.1"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@babel/preset-react": "^7.22.15",
"@reduxjs/toolkit": "^1.9.7",
"babel-loader": "^9.1.3",
"css-loader": "^6.8.1",
"html-webpack-plugin": "^5.5.3",
"mongodb": "^6.2.0",
"mongoose": "^8.0.0",
"mongosh": "^2.0.2",
"nodemon": "^2.0.7",
"redux": "^4.2.1",
"sass": "^1.69.5",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.15.1"
}
}