-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
41 lines (41 loc) · 879 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
39
40
41
{
"name": "waktu-sholat",
"version": "1.0.0",
"main": "./src/index.js",
"license": "MIT",
"author": "R.M. Reza (renomureza@gmail.com)",
"repository": {
"type": "git",
"url": "https://github.com/renomureza/waktu-sholat.git"
},
"scripts": {
"start": "node .",
"dev": "nodemon .",
"postinstall": "npx prisma generate"
},
"dependencies": {
"@prisma/client": "^3.11.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"geo-tz": "^7.0.1",
"mongoose": "^6.2.6",
"morgan": "^1.10.0",
"winston": "^3.6.0"
},
"devDependencies": {
"cheerio": "^1.0.0-rc.10",
"node-libcurl": "^2.3.4",
"nodemon": "^2.0.15",
"prisma": "^3.11.0"
},
"nodemonConfig": {
"ignore": [
"data/**"
]
},
"prisma": {
"schema": "src/prisma/schema.prisma"
}
}