-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.12 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
{
"name": "ereader",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3001 -H 0.0.0.0",
"build": "next build",
"start": "NODE_ENV=production next start -p 3001 -H 0.0.0.0",
"pm2:start": "pm2 start npm --name \"readium-web\" -- run start",
"pm2:setup": "pm2 start npm --name \"readium-web\" -- run start && pm2 save && pm2 startup",
"pm2:logs": "pm2 logs readium-web",
"pm2:restart": "pm2 restart readium-web",
"pm2:stop": "pm2 stop readium-web",
"lint": "next lint"
},
"dependencies": {
"@readium/css": "latest",
"@readium/navigator": "latest",
"@readium/navigator-html-injectables": "latest",
"@readium/navigator-web": "latest",
"@readium/shared": "latest",
"next": "15.0.3",
"r2-navigator-js": "latest",
"r2-shared-js": "latest",
"r2-utils-js": "latest",
"react": "19.0.0-rc-66855b96-20241106",
"react-dom": "19.0.0-rc-66855b96-20241106",
"react-icons": "^5.4.0",
"react-reader": "latest"
},
"devDependencies": {
"eslint": "^8",
"eslint-config-next": "15.0.3",
"postcss": "^8",
"tailwindcss": "^3.4.1"
}
}