-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.01 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.01 KB
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
{
"name": "@texttree/template-rcl",
"author": "TextTree.org",
"version": "0.1.3",
"description": "React component library template",
"keywords": [
"rcl",
"react"
],
"license": "MIT",
"private": false,
"main": "dist/index.js",
"url": "https://github.com/texttree/template-rcl",
"homepage": "https://github.com/texttree/template-rcl#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/texttree/template-rcl.git"
},
"bugs": {
"url": "https://github.com/texttree/template-rcl/issues"
},
"publishConfig": {
"access": "public"
},
"lint-staged": {
"./src/**/*.(j|t)sx?": [
"lint"
],
"{js,ts,tsx,jsx,json,md}": [
"prettier"
]
},
"scripts": {
"build": "styleguidist build",
"start": "styleguidist server",
"lint": "eslint --fix .",
"precommit": "lint-staged",
"prepare": "husky",
"test": "jest",
"build:babel": "babel src --out-dir dist --ignore src/components/hooks/**/*.tsx,src/types/index.ts --extensions .ts,.tsx",
"tsc:dts": "tsc --declaration --outDir dist/ --emitDeclarationOnly",
"prepublishOnly": "shx rm -fr ./dist && yarn build:babel && yarn tsc:dts",
"prettier": "prettier --write .",
"release": "commit-and-tag-version",
"release:first": "commit-and-tag-version --first-release",
"release:major": "commit-and-tag-version --release-as major",
"release:minor": "commit-and-tag-version --release-as minor",
"release:patch": "commit-and-tag-version --release-as patch"
},
"peerDependencies": {
"react": "^18.x",
"react-dom": "^18.x"
},
"devDependencies": {
"@babel/cli": "^7.24.1",
"@babel/core": "^7.24.3",
"@babel/preset-env": "^7.24.3",
"@babel/preset-react": "^7.24.1",
"@babel/preset-typescript": "^7.24.1",
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.2",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^20.11.30",
"@types/react": "^18.2.67",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"commit-and-tag-version": "^12.2.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest-dom": "^5.1.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^6.2.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-docgen-typescript": "^2.2.2",
"react-dom": "^18.2.0",
"react-styleguidist": "^13.1.2",
"shx": "^0.3.4",
"ts-loader": "^9.5.1",
"typescript": "^5.4.3",
"webpack": "^5.91.0"
},
"dependencies": {},
"browserslist": [
"defaults"
]
}