generated from paranext/paranext-extension-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
108 lines (108 loc) · 3.59 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
102
103
104
105
106
107
108
{
"name": "crowd-bible-extension",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"build:vite1": "vite build --config vite/vite-web-view.config.ts",
"build:vite2": "vite build --config vite/vite.config.ts",
"build:vite": "npm run build:vite1 && npm run build:vite2",
"start:vite1": "vite build --watch --config vite/vite-web-view.config.ts",
"start:vite2": "vite build --watch --config vite/vite.config.ts",
"start:vite": "concurrently \"npm:start:vite1\" \"npm:start:vite2\"",
"start:core": "cd ../paranext-core && npm run start",
"start": "cross-env MAIN_ARGS=\"--extensions $INIT_CWD/dist\" concurrently \"npm:start:vite\" \"npm:start:core\"",
"lint": "tsc"
},
"dependencies": {
"@apollo/client": "^3.7.11",
"@capacitor/app": "4.1.1",
"@capacitor/core": "4.6.1",
"@capacitor/haptics": "4.1.0",
"@capacitor/keyboard": "4.1.0",
"@capacitor/status-bar": "4.1.1",
"@eten-lab/models": "^1.3.11",
"@eten-lab/sso": "^0.1.9",
"@eten-lab/ui-kit": "^0.5.38",
"@ionic/react": "^6.0.0",
"@ionic/react-router": "^6.0.0",
"@mui/material": "^5.13.1",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^12.6.3",
"apollo-upload-client": "^17.0.0",
"axios": "^1.3.4",
"bl": "^0.9.0",
"formik": "^2.2.9",
"graphql": "^16.6.0",
"history": "^4.9.0",
"ionicons": "^6.0.3",
"jszip": "^3.10.1",
"language-tags": "^1.0.8",
"localforage": "^1.10.0",
"nanoid": "^4.0.1",
"proskomma": "^0.9.3",
"qs": "^6.11.1",
"query-string": "^8.1.0",
"re-resizable": "^6.9.9",
"react": "^18.2.0",
"react-debounce-input": "^3.3.0",
"react-dom": "^18.2.0",
"react-draggable": "^4.4.5",
"react-native-sqlite-storage": "file:./shims/react-native-sqlite-storage",
"react-router": "^5.2.0",
"react-router-dom": "^5.3.4",
"react-scripts": "^5.0.1",
"react-simple-code-editor": "^0.13.1",
"react-spinners": "^0.13.8",
"react-zoom-pan-pinch": "^3.0.2",
"reflect-metadata": "^0.1.13",
"roarr": "^7.15.0",
"sql.js": "^1.8.0",
"svgson": "^5.2.1",
"swiper": "^8.4.6",
"ts-invariant": "^0.10.3",
"typeorm": "^0.3.12",
"use-debounce": "^9.0.4",
"util": "^0.12.5",
"web-vitals": "^0.2.4",
"workbox-background-sync": "^5.1.4",
"workbox-broadcast-update": "^5.1.4",
"workbox-cacheable-response": "^5.1.4",
"workbox-core": "^5.1.4",
"workbox-expiration": "^5.1.4",
"workbox-google-analytics": "^5.1.4",
"workbox-navigation-preload": "^5.1.4",
"workbox-precaching": "^5.1.4",
"workbox-range-requests": "^5.1.4",
"workbox-routing": "^5.1.4",
"workbox-strategies": "^5.1.4",
"workbox-streams": "^5.1.4",
"yup": "^1.0.0"
},
"devDependencies": {
"@types/apollo-upload-client": "^17.0.2",
"@types/jest": "^26.0.24",
"@types/jszip": "^3.4.1",
"@types/node": "^18.15.11",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@types/react-router": "^5.1.11",
"@types/react-router-dom": "^5.3.3",
"@types/sql.js": "^1.4.4",
"@vitejs/plugin-react": "^3.1.0",
"concurrently": "^8.0.1",
"cross-env": "^7.0.3",
"escape-string-regexp": "^5.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"glob": "^10.2.2",
"papi-dts": "file:../paranext-core/lib/papi-dts",
"patch-package": "^7.0.0",
"rollup-plugin-import-manager": "^0.6.2",
"rollup-plugin-string": "^3.0.0",
"sass": "^1.62.1",
"typescript": "^4.9.3",
"vite": "^4.2.0"
}
}