-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.21 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": "react-keywords",
"private": true,
"scripts": {
"prepare": "husky install",
"watch": "npm run-script watch --workspace react-keywords",
"build": "npm run build --workspace=react-keywords",
"doc": "npm run-script build --workspace www",
"start": "npm run-script start --workspace www",
"version": "lerna version --exact --force-publish --no-push --no-git-tag-version",
"prettier": "prettier --write '**/*.{js,jsx,tsx,ts,less,md,json}'"
},
"keywords": [
"keywords",
"react-component",
"react"
],
"author": "kenny wong <[email protected]>",
"license": "MIT",
"workspaces": [
"core",
"www"
],
"engines": {
"node": ">=16.0.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md,json}": [
"prettier --write"
]
},
"devDependencies": {
"@kkt/ncc": "^1.0.13",
"@kkt/less-modules": "^7.4.9",
"@types/react-test-renderer": "~18.0.0",
"husky": "^8.0.1",
"kkt": "^7.4.9",
"lerna": "^7.1.1",
"lint-staged": "^13.2.1",
"prettier": "^2.8.7",
"react-test-renderer": "^18.2.0",
"tsbb": "^4.1.5",
"jest-watch-typeahead": "^2.2.2",
"jest-environment-jsdom": "^29.6.0",
"jest-environment-node": "^29.5.0"
}
}