-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
48 lines (48 loc) · 1.11 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
{
"name": "crypt",
"version": "1.0.0",
"description": "Secret Anonymous Blog",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"format": "prettier '**/*' --write --ignore-unknown"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ppalone/crypt.git"
},
"keywords": [
"nodejs"
],
"author": "Pranjal Alone",
"license": "ISC",
"bugs": {
"url": "https://github.com/ppalone/crypt/issues"
},
"homepage": "https://github.com/ppalone/crypt#readme",
"dependencies": {
"@sendgrid/mail": "^7.2.3",
"axios": "^0.21.1",
"bcrypt": "^5.0.0",
"connect-flash": "^0.1.1",
"ejs": "^3.1.3",
"express": "^4.17.1",
"express-session": "^1.17.1",
"express-validator": "^6.6.1",
"method-override": "^3.0.0",
"mongoose": "^5.9.16",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"rate-limiter-flexible": "^2.1.10",
"serve-favicon": "^2.5.0"
},
"devDependencies": {
"dotenv": "^8.2.0",
"nodemon": "^2.0.4",
"prettier": "2.1.2"
},
"engines": {
"node": "12.x"
}
}