-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.03 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.03 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
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
{
"name": "scripture-tsv",
"version": "1.2.0",
"repository": "https://github.com/unfoldingWord/scripture-tsv.git",
"main": "./dist/scripture-tsv.cjs.js",
"module": "./dist/scripture-tsv.es.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/scripture-tsv.es.js",
"require": "./dist/scripture-tsv.cjs.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"dev": "vite",
"test": "vitest",
"test:watch": "vitest watch",
"test:cov": "vitest --coverage",
"check": "tsc",
"build": "rm -rf ./dist && vite build && tsc",
"type-check": "tsc",
"styleguide": "styleguidist server",
"styleguide:build": "styleguidist build",
"lint": "eslint src --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"prepublishOnly": "rm -rf ./dist && pnpm run build",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"dompurify": "^3.1.2",
"lodash.clonedeep": "^4.5.0",
"marked": "^11.2.0",
"tsv": "^0.2.0",
"use-deep-compare-effect": "^1.8.1"
},
"peerDependencies": {
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@mui/icons-material": "^5.8.4",
"@mui/material": "^5.8.7",
"@mui/styles": "^5.8.7",
"bible-reference-range": "^1.1.1",
"bible-reference-rcl": "^1.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/preset-env": "^7.24.5",
"@babel/preset-react": "^7.24.1",
"@babel/preset-typescript": "^7.24.1",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@mui/icons-material": "^5.15.16",
"@mui/material": "^5.15.16",
"@mui/styles": "^5.15.16",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-typescript": "^11.1.6",
"@storybook/addon-docs": "^7.6.19",
"@storybook/addon-essentials": "^7.6.19",
"@storybook/addon-interactions": "^7.6.19",
"@storybook/addon-links": "^7.6.19",
"@storybook/addon-onboarding": "^1.0.11",
"@storybook/blocks": "^7.6.19",
"@storybook/react": "^7.6.19",
"@storybook/react-vite": "^7.6.19",
"@storybook/test": "^7.6.19",
"@types/dompurify": "^3.0.5",
"@types/jest": "^29.5.12",
"@types/lodash.clonedeep": "^4.5.9",
"@types/node": "^20.12.8",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@types/tsv": "^0.2.4",
"@vitejs/plugin-react": "^4.2.1",
"bible-reference-range": "^1.1.1",
"bible-reference-rcl": "^1.3.0",
"core-js": "^3.37.0",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.6",
"eslint-plugin-storybook": "^0.6.15",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rollup-plugin-typescript-paths": "^1.5.0",
"storybook": "^7.6.19",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vite-plugin-dts": "^3.9.0",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.5.3"
}
}