-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.1 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
{
"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": {
"@emotion/cache": "^11.13.1",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@juggle/resize-observer": "^3.4.0",
"@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.2.8",
"classnames": "^2.5.1",
"css-selector-generator": "^3.6.8",
"debounce": "^2.1.1",
"json-templates": "^5.1.0",
"next": "14.2.7",
"path-browserify": "^1.0.1",
"react": "^18",
"react-aria-components": "^1.4.0",
"react-dom": "^18",
"react-redux": "^9.1.2"
},
"devDependencies": {
"@svgr/webpack": "^8.1.0",
"@types/json-templates": "^3.0.3",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.7",
"readium-css": "github:readium/readium-css#json",
"typescript": "^5"
},
"overrides": {
"@babel/core": "7.25.2"
},
"resolutions": {
"@babel/core": "7.25.2"
}
}