-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.37 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "kanzislam",
"version": "2.1.0",
"description": "منصة كنز الإسلام - Kanzislam.net",
"main": "src/server.mjs",
"scripts": {
"syncData": "node src/utils/syncData.mjs",
"start": "npm run syncData && node src/server.mjs",
"dev": "npm run syncData && nodemon src/server.mjs",
"gulp": "node src/utils/gulpfile.mjs",
"sitemap": "node src/utils/generateSitemap.mjs"
},
"author": {
"name": "kanzislam",
"url": "https://github.com/kanzislam"
},
"license": "GPL-3.0-only",
"keywords": [
"kanzislam",
"islam",
"islamic",
"website",
"ar"
],
"repository": {
"type": "git",
"url": "git+https://github.com/kanzislam/Kanzislam.git"
},
"bugs": {
"url": "https://github.com/kanzislam/Kanzislam/issues"
},
"homepage": "https://github.com/kanzislam/Kanzislam#readme",
"nodemonConfig": {
"ignore": [
"**/public/**",
"**/logs/**",
"**/data/**"
]
},
"dependencies": {
"body-parser": "^1.20.3",
"compression": "^1.7.4",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"fs-extra": "^11.2.0",
"helmet": "^8.0.0",
"node-fetch": "^3.3.2",
"pug": "^3.0.3",
"serve-favicon": "^2.5.0"
},
"devDependencies": {
"gulp": "^5.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-concat": "^2.6.1",
"gulp-uglify": "^3.0.2",
"nodemon": "^3.1.7"
}
}