-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 770 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 770 Bytes
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
{
"name": "retropatcher",
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"scrape": "node ./scrape.mjs"
},
"dependencies": {
"file-saver": "^2.0.5",
"javascript-time-ago": "^2.3.11",
"js-md5": "^0.7.3",
"jszip": "^3.10.1",
"next": "^12.1.4",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-time-ago": "^7.1.9"
},
"devDependencies": {
"@types/file-saver": "^2.0.5",
"@types/js-md5": "^0.4.3",
"@types/node": "17.0.8",
"@types/node-fetch": "^3.0.3",
"@types/react": "17.0.38",
"eslint": "8.8",
"eslint-config-next": "12.0.8",
"node-fetch": "^3.2.10",
"typescript": "4.5.4"
}
}