-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
70 lines (70 loc) · 2 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
{
"name": "word-aligner-rcl",
"version": "1.1.3",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"repository": "https://github.com/unfoldingWord/word-aligner-rcl.git",
"author": "",
"license": "MIT",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.cjs.js"
}
},
"scripts": {
"start": "NODE_OPTIONS=--openssl-legacy-provider npx styleguidist server",
"build": "NODE_OPTIONS=--openssl-legacy-provider npx styleguidist build",
"build:prod": "cross-env MINIFY=true vite build",
"build:dev": "cross-env MINIFY=false vite build",
"test": "jest",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"prepublishOnly": "rm -rf ./dist && npm run build:prod",
"postpublish": "git tag v$npm_package_version && git push origin v$npm_package_version"
},
"files": [
"dist/*"
],
"peerDependencies": {
"prop-types": "^15.x",
"react": "^18.x",
"react-dom": "^18.x"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@vitejs/plugin-react": "^4.2.1",
"babel-loader": "^9.1.2",
"cross-env": "^7.0.3",
"fs-extra": "^11.1.0",
"jest": "^29.5.0",
"lodash.clonedeep": "^4.5.0",
"ospath": "1.2.2",
"path-extra": "^4.3.0",
"prettier": "^2.8.4",
"prop-types": "^15.8.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-styleguidist": "^13.1.1",
"vite": "^5.2.11",
"webpack": "^5.76.0"
},
"dependencies": {
"bible-reference-range": "^1.1.0",
"deep-equal": "^2.0.5",
"file-loader": "^6.2.0",
"lodash.clonedeep": "^4.5.0",
"string-punctuation-tokenizer": "2.2.0",
"usfm-js": "3.4.3",
"word-aligner": "1.0.2",
"wordmap-lexer": "^0.3.6"
},
"resolutions": {
"@mui/styled-engine": "npm:@mui/styled-engine-sc@latest",
"ast-types": "^0.14.0"
}
}