-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
38 lines (38 loc) · 916 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
{
"name": "medium-posts-api",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest ./tests"
},
"dependencies": {
"@types/sanitize-html": "^2.9.5",
"axios": "^1.7.4",
"cheerio": "^1.0.0",
"json5": "2.2.3",
"next": "14.2.14",
"nextjs-cors": "^2.2.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"sanitize-html": "^2.12.1",
"semver": "7.6.3"
},
"devDependencies": {
"@babel/preset-env": "^7.23.9",
"@babel/preset-typescript": "^7.24.7",
"@types/jest": "^29.5.12",
"@types/node": "22.7.4",
"@types/react": "18.3.1",
"@types/react-dom": "18.3.0",
"babel-jest": "^29.7.0",
"eslint": "8.57.0",
"eslint-config-next": "14.2.14",
"jest": "^29.7.0",
"node-mocks-http": "^1.16.1",
"typescript": "5.6.2"
}
}