This repository has been archived by the owner on May 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
101 lines (101 loc) · 3.18 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
{
"name": "usfm-editor",
"version": "0.8.7",
"description": "A WYSIWYG editor component for USFM",
"author": "Albeit Technology",
"contributors": [
"Russell Aunger (https://github.com/aunger)",
"Kevin Joslyn (https://github.com/kjoslyn)",
"Joel Mathew (https://github.com/joelthe1)",
"Christopher Klapp (https://github.com/klappy)"
],
"license": "MIT",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/friendsofagape/usfm-editor.git"
},
"keywords": [
"editor",
"react",
"scripture",
"slate",
"slatejs",
"usfm",
"Unified Standard Format Markers"
],
"scripts": {
"styleguidist": "styleguidist build",
"babel": "babel src --out-dir dist --copy-files --include-dotfiles --presets @babel/preset-react --extensions \".ts,.js,.tsx,.jsx\"",
"clean": "rm -rf dist/*",
"build": "npm run clean && npm run styleguidist && npm run babel",
"prepublishOnly": "npm run build",
"test": "jest",
"lintCheck": "eslint '**/*.{js,jsx,ts,tsx}'",
"lintFix": "eslint '**/*.{js,jsx,ts,tsx}' --quiet --fix",
"formatCheck": "prettier --check .",
"formatFix": "prettier --write ."
},
"dependencies": {
"@material-ui/core": "4.12.3",
"@material-ui/icons": "4.11.2",
"core-js": "3.21.0",
"emotion": "10.0.17",
"file-loader": "6.2.0",
"json-transforms": "1.1.2",
"lodash": "4.17.21",
"prop-types": "15.8.1",
"slate": "0.66.5",
"slate-hyperscript": "0.67.0",
"slate-react": "0.69.0",
"usfm-js": "2.0.1"
},
"peerDependencies": {
"@types/react-dom": "17.0.11",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@babel/cli": "7.17.0",
"@babel/core": "7.17.2",
"@babel/plugin-proposal-class-properties": "7.16.7",
"@babel/plugin-proposal-object-rest-spread": "7.16.7",
"@babel/preset-env": "7.16.11",
"@babel/preset-react": "7.16.7",
"@babel/preset-typescript": "7.16.7",
"@svgr/webpack": "6.2.1",
"@types/enzyme": "3.10.11",
"@types/jest": "27.4.0",
"@types/react-dom": "17.0.11",
"@typescript-eslint/eslint-plugin": "5.11.0",
"@typescript-eslint/parser": "5.11.0",
"babel-jest": "27.3.1",
"css-loader": "5.2.7",
"enzyme": "3.11.0",
"eslint": "8.8.0",
"eslint-plugin-jest": "26.1.0",
"eslint-plugin-react": "7.28.0",
"jest": "27.5.1",
"prettier": "2.5.1",
"react": "17.0.2",
"react-docgen": "5.4.0",
"react-docgen-typescript": "2.2.2",
"react-dom": "17.0.2",
"react-styleguidist": "12.0.0-alpha9.9",
"source-map-loader": "1.1.1",
"style-loader": "1.3.0",
"ts-jest": "27.1.3",
"ts-loader": "9.2.6",
"typescript": "^4.5.0",
"webpack": "^5.68.0"
},
"browserslist": [
">1%",
"last 1 version",
"Firefox ESR",
"not dead"
],
"files": [
"dist/*"
]
}