forked from gadingnst/hadith-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 732 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 732 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
{
"name": "hadith-api",
"version": "1.0.0",
"main": "server.ts",
"repository": "https://github.com/gadingnst/hadith-api.git",
"author": "Gading Nasution. <contact@gading.dev>",
"license": "MIT",
"private": false,
"scripts": {
"start": "ts-node server.ts",
"dev": "nodemon --exec 'ts-node' server.ts",
"crawl": "ts-node crawler/script.ts"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.1"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.17",
"@types/node": "^18.8.3",
"@types/puppeteer": "^5.4.6",
"nodemon": "^2.0.20",
"puppeteer": "^18.2.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}