-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.1 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
40
41
42
43
44
45
46
47
{
"name": "web20-camon",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "pnpm -r test",
"test:api": "pnpm --filter @web20-camon/api test && pnpm --filter @web20-camon/api test:e2e",
"test:chat": "pnpm --filter @web20-camon/chat test",
"test:media": "pnpm --filter @web20-camon/media test",
"commit": "npx cz"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "2.8.8",
"typescript": "5.3.3"
},
"husky": {
"hooks": {
"pre-commit": "sh ./path/to/your-script.sh"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"dependencies": {
"commitizen": "^4.3.1",
"cz-customizable": "^7.2.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
}
}