-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.93 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.93 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
{
"name": "@texttree/tt-reference-rcl",
"author": "TextTree.org",
"version": "1.2.1",
"description": "This library of components was made as part of the development of the Bible Study App and helps to display books and chapters from the books of the Bible.",
"keywords": [
"bible",
"reference"
],
"license": "MIT",
"private": false,
"main": "dist/index.js",
"url": "https://github.com/texttree/tt-reference-rcl",
"homepage": "https://github.com/texttree/tt-reference-rcl#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/texttree/tt-reference-rcl.git"
},
"bugs": {
"url": "https://github.com/texttree/tt-reference-rcl/issues"
},
"lint-staged": {
"src/**/*.js": [
"eslint --fix"
],
"*.+(json|md)": [
"prettier --write"
]
},
"scripts": {
"prepare": "husky install",
"start": "styleguidist server",
"build": "styleguidist build",
"lint": "eslint --fix .",
"prettier": "prettier --write .",
"prepublishOnly": "rm -fr ./dist & babel ./src --out-dir ./dist -s inline",
"precommit": "lint-staged"
},
"peerDependencies": {
"@material-ui/core": "^4.x",
"prop-types": "^15.x",
"react": "^17.x",
"react-dom": "^17.x"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.8",
"@babel/eslint-parser": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"@material-ui/core": "^4.12.3",
"babel-loader": "^8.2.2",
"eslint": "7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.2",
"lint-staged": "^11.2.3",
"prettier": "^2.4.1",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-styleguidist": "^11.1.7",
"webpack": "^5.58.2"
}
}