-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.09 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
{
"name": "uw-quote-helpers",
"description": "An open component package for generating target quotes from an aligned Bible.",
"version": "1.1.7",
"homepage": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/unfoldingWord/uw-quote-helpers"
},
"scripts": {
"start": "npx styleguidist server --port=3030",
"build:guide": "npx styleguidist build && mv styleguide build",
"build": "rm -rf && vite build",
"prepublishOnly": "npm run build",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"sections": "node styleguide.sections.js"
},
"peerDependencies": {
"usfm-js": "^3.4.2"
},
"dependencies": {
"bible-reference-range": "^1.1.1",
"string-punctuation-tokenizer": "^2.2.0",
"tsv-groupdata-parser": "^1.1.0",
"xregexp": "^5.1.1"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"node-fetch": "^3.3.1",
"@babel/core": "^7.21.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/preset-env": "^7.20.2",
"@jest/transform": "^29.5.0",
"@rollup/plugin-babel": "^6.0.3",
"@types/jest": "^29.4.1",
"babel-loader": "^8.2.2",
"crypto-browserify": "^3.12.0",
"css-loader": "^6.7.1",
"jest": "^29.5.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "^5.0.1",
"react-styleguidist": "^13.1.1",
"usfm-js": "^3.4.2",
"uw-bible-parser": "0.0.1-beta.3",
"vite": "^4.1.4",
"webpack-cli": "^4.10.0"
},
"type": "module",
"files": [
"dist"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.25%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"browser": {
"fs": false,
"os": false,
"path": false
}
}