-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 981 Bytes
/
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
{
"name": "penn-spark-technical-challenge",
"version": "1.0.0",
"description": "",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"testfrontend": "parcel frontend/src/index.html",
"server": "nodemon backend/server.js",
"dev": "concurrently --kill-others \"npm run testfrontend\" \"npm run server\"",
"frontend": "parcel build frontend/src/index.html",
"dev2": "npm run frontend && node backend/server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.27.2",
"bootstrap": "^5.2.0",
"concurrently": "^7.4.0",
"cookie-session": "^2.0.0",
"cors": "^2.8.5",
"express": "^4.18.1",
"mongoose": "^6.5.4",
"nodemon": "^2.0.19",
"parcel": "^2.7.0",
"react": "^18.2.0",
"react-bootstrap": "^2.5.0",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"react-router-dom": "^6.3.0"
},
"devDependencies": {
"process": "^0.11.10"
}
}