-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 746 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 746 Bytes
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
{
"name": "devprofilehub",
"version": "1.0.0",
"description": "A modern web application for developers to showcase their coding profiles",
"main": "index.js",
"scripts": {
"dev": "concurrently \"npm run server\" \"npm run client\"",
"server": "cd server && npm run dev",
"client": "cd client && npm start",
"install-all": "npm install && cd server && npm install && cd ../client && npm install",
"start": "npm run dev"
},
"keywords": [
"developer",
"profile",
"coding",
"portfolio"
],
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^8.2.2",
"cypress": "^15.5.0"
},
"dependencies": {
"@sentry/node": "^10.20.0",
"@sentry/react": "^10.20.0"
}
}