-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
41 lines (41 loc) · 946 Bytes
/
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
{
"name": "libremdb",
"version": "4.1.0",
"description": "a free & open source IMDb front-end",
"private": true,
"type": "module",
"author": "libremdb-contributors",
"license": "AGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/zyachel/libremdb/"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"axios": "^0.27.2",
"cheerio": "1.0.0-rc.12",
"ioredis": "^5.3.2",
"next": "12.2.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"sharp": "^0.33.1"
},
"devDependencies": {
"@types/node": "18.7.3",
"@types/react": "18.0.17",
"@types/react-dom": "18.0.6",
"eslint": "8.22.0",
"eslint-config-next": "12.2.5",
"sass": "^1.62.1",
"typescript": "4.7.4"
},
"engines": {
"node": " ^18.17.0 || ^20.3.0 || >=21.0.0",
"pnpm": ">=8.0.0"
}
}