-
-
Notifications
You must be signed in to change notification settings - Fork 119
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 599 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 599 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "cwc",
"packageManager": "pnpm@10.10.0+sha512.d615db246fe70f25dcfea6d8d73dee782ce23e2245e3c4f6f888249fb568149318637dca73c2c5c8ef2a4ca0d5657fb9567188bfab47f566d1ee6ce987815c39",
"devDependencies": {
"@types/jest": "^29.5.14",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "^3.7.4",
"ts-jest": "^29.4.0",
"typescript": "^5.8.3"
},
"scripts": {
"preinstall": "husky",
"test": "jest",
"test:watch": "jest --watch"
},
"lint-staged": {
"*.{ts,tsx,json,css,scss,md}": [
"prettier --write"
]
}
}