-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1018 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
{
"name": "unofficial-bango-resep-api",
"version": "1.0.0",
"description": "Unofficial API dari bango.co.id/resep",
"main": "./api/index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon ./api/index.ts",
"start-vercel": "vercel dev",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"deploy": "vercel deploy --prod"
},
"author": "tavvfiq",
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/node": "^14.14.28",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.5",
"vercel": "^21.2.3"
},
"dependencies": {
"axios": "^0.21.1",
"cheerio": "^1.0.0-rc.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1"
}
}