forked from readium/playground
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.98 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
{
"name": "readium-playground",
"description": "Play with the capabilities of the Readium Web toolkit",
"keywords": [
"readium",
"demo",
"web reader"
],
"license": "BSD-3-Clause",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"build:all": "pnpm run build:submodules && next build",
"build:submodules": "pnpm run build:shared && pnpm run build:navigator",
"build:shared": "cd ./src/readium/ts-toolkit/shared && pnpm run build",
"build:navigator": "pnpm run build:injectables && cd ./src/readium/ts-toolkit/navigator && pnpm run build",
"build:injectables": "cd ./src/readium/ts-toolkit/navigator-html-injectables && pnpm run build",
"start": "next start",
"lint": "next lint",
"deploy": "npx @cloudflare/next-on-pages@1 && npx wrangler pages deploy",
"preinstall": "npx only-allow pnpm && cd ./src/readium/ts-toolkit && pnpm install",
"postinstall": "pnpm run build:submodules"
},
"dependencies": {
"@readium/navigator": "link:src/readium/ts-toolkit/navigator",
"@readium/navigator-html-injectables": "link:src/readium/ts-toolkit/navigator-html-injectables",
"@readium/shared": "link:src/readium/ts-toolkit/shared",
"@reduxjs/toolkit": "^2.5.0",
"classnames": "^2.5.1",
"debounce": "^2.2.0",
"json-templates": "^5.1.0",
"next": "15.1.1",
"react": "^19.0.0",
"react-aria-components": "^1.5.0",
"react-dom": "^19.0.0",
"react-redux": "^9.2.0"
},
"devDependencies": {
"@svgr/webpack": "^8.1.0",
"@types/json-templates": "^3.0.3",
"@types/node": "^22.10.2",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"eslint": "^9.17.0",
"eslint-config-next": "15.1.1",
"readium-css": "github:readium/readium-css",
"typescript": "^5.7.2",
"vercel": "39.1.1"
},
"overrides": {
"@babel/core": "7.25.2",
"vercel": "$vercel"
},
"resolutions": {
"@babel/core": "7.25.2",
"vercel": "$vercel"
}
}