-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 917 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 917 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
31
32
33
34
35
36
37
38
39
40
{
"name": "asaxp",
"packageManager": "yarn@4.2.2",
"private": true,
"scripts": {
"client": "yarn workspace next-app",
"server": "yarn workspace express-app",
"types": "yarn workspace types",
"prepare": "husky install",
"format": "prettier --write '**/*.{ts,tsx}",
"lint:fix": "eslint '**/*.{ts,tsx}'"
},
"workspaces": [
"packages/frontend/next-app",
"packages/backend/express-app",
"packages/libs/types"
],
"devDependencies": {
"@types/jest": "^29.5.12",
"cypress": "^13.10.0",
"dotenv": "^16.4.5",
"eslint": "^8.0.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.5",
"prettier": "^3.2.5",
"ts-jest": "^29.1.4",
"typescript": "^5.4.5"
},
"dependencies": {
"dayjs": "^1.11.11",
"zod": "^3.23.8"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
]
}
}