-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 900 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
{
"name": "stockbridge",
"version": "0.1.0",
"main": "index.js",
"repository": "https://gitlab.lrz.de/seba-master-2023/team-27/stockbridge.git",
"license": "MIT",
"private": true,
"scripts": {
"start": "concurrently \"yarn workspace server start\" \"yarn workspace client start\"",
"server": "yarn workspace server start",
"server:dev": "yarn workspace server dev",
"client": "yarn workspace client start",
"build": "concurrently \"yarn workspace server build\" \"yarn workspace client build\"",
"stripe": "stripe listen --forward-to localhost:3001/api/v1/stripe/webhook"
},
"workspaces": [
"server",
"client"
],
"devDependencies": {
"concurrently": "^8.0.1",
"prettier": "^2.8.8"
},
"dependencies": {
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@mui/material": "^5.13.3",
"prettier": "^2.8.8"
}
}