-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 912 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 912 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
30
{
"name": "medimate",
"version": "0.0.1",
"private": true,
"workspaces": [
"./**"
],
"devDependencies": {
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"syncpack": "^12.0.1",
"typescript": "^5.3.3"
},
"scripts": {
"postinstall": "husky install",
"format": "eslint --fix && prettier --write",
"typecheck": "tsc --noEmit",
"sync-packages": "syncpack fix-mismatches",
"start:frontend": "yarn workspace frontend start",
"start:backend": "yarn workspace backend start"
},
"packageManager": "yarn@4.5.2"
}