-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.59 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
{
"name": "rsvp-engine",
"version": "1.0.0",
"description": "Modern RSVP management web application built with Node.js, Express, and React.",
"type": "module",
"main": "index.js",
"scripts": {
"start": "node server/src/server.js",
"server": "nodemon server/src/server.js",
"dev": "NODE_ENV=development webpack serve --config client/webpack.config.js --open",
"build": "NODE_ENV=production webpack --config client/webpack.config.js",
"lint": "eslint .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EventPulse/RSVPEngine.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/EventPulse/RSVPEngine/issues"
},
"homepage": "https://github.com/EventPulse/RSVPEngine#readme",
"dependencies": {
"@reduxjs/toolkit": "^2.2.3",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"mongoose": "^8.5.1",
"node-fetch": "^3.3.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-redux": "^9.1.1",
"react-router-dom": "^6.23.0"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/preset-env": "^7.24.4",
"@babel/preset-react": "^7.24.1",
"@eslint/js": "^9.1.1",
"babel-loader": "^9.1.3",
"css-loader": "^7.1.1",
"eslint": "8.57",
"eslint-plugin-react": "^7.34.1",
"html-webpack-plugin": "^5.6.0",
"jest": "^29.7.0",
"mini-css-extract-plugin": "^2.9.0",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
}
}