-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
103 lines (103 loc) · 3.37 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
102
103
{
"name": "@brightlayer-ui/react-doc-components",
"version": "2.0.0",
"description": "A library of re-usable react components used to build component documentation similar to storybook",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"main:dev": "index.ts",
"author": "Brightlayer UI <[email protected]>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/etn-ccis/blui-react-doc-tools/issues"
},
"homepage": "https://github.com/etn-ccis/blui-react-doc-tools#readme",
"scripts": {
"build": "rollup -c",
"coverage": "yarn test --coverage --watchAll=false",
"lint": "eslint \"src/**/**.{tsx,ts}\"",
"lint:fix": "eslint \"src/**/**.{tsx,ts}\" --fix",
"test": "jest",
"prettier": "prettier \"src/**/**.{ts,tsx,js,jsx,json,css,scss,html}\" --write",
"prettier:check": "prettier \"src/**/**.{ts,tsx,js,jsx,json,css,scss,html}\" --check",
"precommit": "yarn prettier && yarn lint",
"publish:package": "cd dist && rm -f *.tgz && set npm_config_yes=true && npx -p @brightlayer-ui/publish blui-publish",
"tag:package": "cd dist && npx -p @brightlayer-ui/tag blui-tag -s -blui-react-doc-components"
},
"prettier": "@brightlayer-ui/prettier-config",
"repository": {
"type": "git",
"url": "git+https://github.com/etn-ccis/blui-react-doc-tools.git"
},
"keywords": [
"react",
"components",
"docs",
"storybook",
"playground",
"code",
"snippet"
],
"dependencies": {
"color": "^4.0.0",
"lodash.debounce": "^4.0.8",
"lodash.groupby": "^4.6.0"
},
"peerDependencies": {
"@brightlayer-ui/react-components": "^7.0.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^6.3.0",
"@mui/material": "^6.3.0",
"prismjs": "^1.29.0",
"react": "^18.2.0"
},
"devDependencies": {
"@brightlayer-ui/eslint-config": "^3.0.1",
"@brightlayer-ui/prettier-config": "^1.0.3",
"@brightlayer-ui/react-components": "^7.0.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^6.3.0",
"@mui/material": "^6.3.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"@testing-library/dom": "^10.2.0",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/color": "^3.0.5",
"@types/jest": "^29.5.12",
"@types/lodash.debounce": "^4.0.8",
"@types/lodash.groupby": "^4.6.7",
"@types/prismjs": "^1.26.2",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest-dom": "^5.0.0",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-testing-library": "^6.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.0.3",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^4.3.0",
"rollup-plugin-dts": "^6.1.0",
"ts-jest": "^29.1.5",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
},
"files": [
"dist/",
"CHANGELOG.md",
"README.md",
"LICENSE"
]
}