-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
101 lines (101 loc) · 2.86 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "koot-packages",
"description": "All modules and packages for Koot.js",
"private": true,
"scripts": {
"doc": "docsify serve docs",
"bootstrap": "node bootstrap.js",
"publish": "node ./publish.js",
"test": "node ./test/index.js",
"reset": "npm i fs-extra --no-save --legacy-peer-deps && node ./reset.js && node bootstrap.js",
"lerna:changed": "lerna changed",
"eslint:koot": "eslint \"packages/koot/!(node_modules|logs|dist|dist*|test)/**/*.+(js|jsx)\"",
"check-types": "tsc --noEmit",
"prepare": "husky install",
"commit": "node ./node_modules/cz-customizable/standalone.js"
},
"repository": {
"type": "git",
"url": "https://github.com/cmux/koot"
},
"keywords": [
"react",
"isomorphic"
],
"author": {
"name": "dongwenxiao",
"email": "[email protected]"
},
"contributors": [
{
"name": "diablohu",
"email": "[email protected]",
"url": "http://diablohu.com"
}
],
"bugs": {
"url": "https://github.com/cmux/koot/issues"
},
"homepage": "https://github.com/cmux/koot",
"engines": {
"node": ">=14.0.0"
},
"license": "Apache-2.0",
"dependencies": {
"docsify-cli": "^4.4.4"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"camelcase": "^6.2.0",
"chalk": "^4.1.2",
"cheerio": "^1.0.0-rc.12",
"crlf": "^1.1.1",
"cz-customizable": "^6.9.1",
"eslint": "^7.32.0",
"eslint-config-koot": "^3.1.1",
"fs-extra": "^10.1.0",
"husky": "^8.0.1",
"inquirer": "^8.2.4",
"is-valid-path": "^0.1.1",
"jest": "^28.1.3",
"jsdom": "^20.0.0",
"lerna": "^5.3.0",
"lerna-wizard": "^1.1.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"prettier-eslint": "^13.0.0",
"puppeteer": "15.4.2",
"simple-git": "^3.10.0",
"symlink-dir": "^5.0.1"
},
"overrides": {
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-plugin-flowtype": "^5.10.0",
"eslint-plugin-react-hooks": "^4.6.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,cjs,mjs}": [
"eslint --fix",
"prettier --write"
],
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{xxxxxx}": [
"tsc --noEmit"
],
"*.{json,md,css,less,sass,scss}": [
"prettier --write"
]
}
}