-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.51 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@fanbook/fakebook.js",
"private": true,
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"postinstall": "husky install .github/husky"
},
"dependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@favware/cliff-jumper": "^2.0.1",
"@favware/npm-deprecate": "^1.0.7",
"@types/node": "^20.2.5",
"@vitest/coverage-c8": "^0.31.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.41.0",
"eslint-config-mahir": "^0.0.26",
"prettier": "^2.8.8",
"tsup": "^6.7.0",
"turbo": "^1.9.9",
"typescript": "^5.0.4",
"vitest": "^0.31.1"
},
"contributors": [
{
"name": "Voxelli",
"email": "[email protected]"
},
{
"name": "Parbez",
"email": "[email protected]"
},
{
"name": "Shoxcy",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/fanbookjs/fanbook.js"
},
"engines": {
"node": ">=v16.0.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{mjs,js,ts}": "eslint --fix --ext mjs,js,ts"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"packageManager": "[email protected]",
"devDependencies": {
"husky": "^8.0.3",
"lint-staged": "^13.2.2"
}
}