forked from unfoldingWord-box3/simple-text-editor-rcl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.31 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
{
"name": "simple-text-editor-rcl",
"description": "A React Component Library for simple text editing.",
"version": "6.16.0",
"private": false,
"homepage": "https://simple-text-editor-rcl.netlify.app/",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/unfoldingWord-box3/simple-text-editor-rcl.git"
},
"dependencies": {
"use-deep-compare": "^1.1.0"
},
"scripts": {
"start": "yarn && styleguidist server",
"build-dev": "styleguidist build",
"build": "./node_modules/.bin/babel src --out-dir build && cp ./src/components/*.css ./build/components",
"test": "react-scripts test",
"prepublishOnly": "rm -fr ./build && yarn build"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.17.10",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@babel/plugin-syntax-logical-assignment-operators": "^7.10.4",
"@babel/preset-env": "^7.17.10",
"@babel/preset-react": "^7.12.10",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@unfoldingword/eslint-config": "^1.3.3",
"babel-loader": "^8.2.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.1.5",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-test-selectors": "^2.0.3",
"lodash": "^4.17.21",
"lorem-ipsum-usfm": "^0.3.1",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "^4.0.3",
"react-styleguidist": "^11.2.0",
"web-vitals": "^1.0.1",
"webpack": "^4.44.0"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"main": "build/index.js",
"files": [
"build"
]
}