-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.96 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
59
60
61
62
63
64
65
66
67
68
69
{
"name": "weblog",
"version": "1.0.0",
"description": "Weblog - Express.js",
"main": "dist/app.js",
"scripts": {
"start": "cross-env NODE_ENV=Production node dist/app.js",
"dev": "cross-env NODE_ENV=Development DEBUG=weblog nodemon dist/app.js",
"tsc": "tsc -w",
"sass": "sass --no-source-map -w src/public/scss:dist/public/css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hsn8najafi/weblog.git"
},
"author": "Hosein Najafi <hsn8najafi@gmail.com>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/hsn8najafi/weblog/issues"
},
"homepage": "https://github.com/hsn8najafi/weblog#readme",
"devDependencies": {
"@types/app-root-path": "^1.2.4",
"@types/bcryptjs": "^2.4.2",
"@types/connect-flash": "^0.0.37",
"@types/debug": "^4.1.7",
"@types/ejs": "^3.1.0",
"@types/express": "^4.17.13",
"@types/express-ejs-layouts": "^2.5.0",
"@types/express-session": "^1.17.4",
"@types/morgan": "^1.9.3",
"@types/multer": "^1.4.7",
"@types/node": "^17.0.5",
"@types/node-fetch": "^2.5.12",
"@types/passport": "^1.0.7",
"@types/passport-local": "^1.0.34",
"@types/sharp": "^0.29.5",
"@types/uuid": "^8.3.4",
"cross-env": "^7.0.3",
"nodemon": "^2.0.15",
"sass": "^1.45.1",
"typescript": "^4.5.4"
},
"dependencies": {
"app-root-path": "^3.0.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.1",
"connect-flash": "^0.1.1",
"connect-mongo": "^4.6.0",
"debug": "^4.3.3",
"dotenv": "^10.0.0",
"ejs": "^3.1.6",
"express": "^4.17.2",
"express-ejs-layouts": "^2.5.1",
"express-session": "^1.17.2",
"jalali-moment": "^3.3.10",
"mongodb": "^4.3.1",
"mongoose": "^6.1.3",
"morgan": "^1.10.0",
"multer": "^1.4.4",
"node-fetch": "^2.6.6",
"passport": "^0.5.2",
"passport-local": "^1.0.0",
"sharp": "^0.29.3",
"uuid": "^8.3.2",
"winston": "^3.4.0",
"yup": "^0.32.11"
}
}