generated from paranext/paranext-extension-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.42 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
{
"name": "paranext-extension-sneeze-board",
"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": {
"papi-components": "file:../paranext-core/lib/papi-components",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/node": "^18.17.0",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.3.2",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"escape-string-regexp": "^5.0.0",
"glob": "^10.3.3",
"papi-dts": "file:../paranext-core/lib/papi-dts",
"patch-package": "^7.0.2",
"rollup-plugin-import-manager": "^0.6.4",
"rollup-plugin-string": "^3.0.0",
"sass": "^1.64.1",
"typescript": "^5.1.6",
"vite": "^5.4.8"
},
"volta": {
"node": "18.18.2"
}
}