-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.04 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
{
"name": "pdt-development",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"server": "npm start --workspace=server",
"client": "npm start --workspace=client",
"start": "concurrently --kill-others-on-fail \"npm run server\" \"npm run client\"",
"build": "npm run build --workspace=client && npm run build --workspace=server"
},
"keywords": [],
"author": "",
"license": "ISC",
"workspaces": [
"packages/server",
"packages/client"
],
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.2.1",
"@fortawesome/free-solid-svg-icons": "^6.2.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"axios": "^1.2.1",
"concurrently": "^7.6.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.4",
"mongodb": "^4.12.1",
"react-icons": "^4.7.1",
"react-router-dom": "^6.4.5",
"socket.io": "^4.5.4",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/node": "^7.20.5"
}
}