-
-
Notifications
You must be signed in to change notification settings - Fork 203
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 946 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 946 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
35
36
37
{
"name": "http.cat",
"version": "3.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && node ./scripts/post-build.js",
"start": "next start",
"lint": "eslint .",
"deploy": "./scripts/deploy.sh",
"scrapper": "node ./scripts/scrapper.js"
},
"dependencies": {
"@types/node": "^20.14.9",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.4.19",
"eslint": "^9",
"eslint-config-next": "^16.2.1",
"next": "^16.2.1",
"postcss": "^8.4.38",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"rehype-external-links": "^3.0.0",
"rehype-stringify": "^10.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.0.0",
"tailwindcss": "^3.4.4",
"typescript": "^5.5.2",
"unified": "^11.0.4"
},
"devDependencies": {
"all-contributors-cli": "^6.26.1",
"jsdom": "^24.1.0",
"p-map": "^7.0.2"
}
}