-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·45 lines (45 loc) · 1.17 KB
/
package.json
File metadata and controls
executable file
·45 lines (45 loc) · 1.17 KB
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
{
"name": "blog",
"version": "1.0.0",
"description": "Simple CMS for maintaining a blog.",
"main": "server.js",
"engines": {
"node": "10.16.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"heroku-postbuild": "cd client && npm install --only=dev && npm install && npm run build",
"win-local": "set SECRET=1234567ABCDEFGHIJKLMNOPQRSTUVWXY && nodemon server.js",
"mac-local": "export SECRET=1234567ABCDEFGHIJKLMNOPQRSTUVWXY && nodemon server.js",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danmun/blog.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/danmun/blog/issues"
},
"dependencies": {
"bcrypt": "^3.0.6",
"cookie-parser": "^1.4.4",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.7.3",
"multer": "^1.4.2",
"github-api": "3.4.0",
"moment": "2.29.1",
"mongo-migrate": "2.0.2",
"node-2fa": "2.0.2",
"helmet": "4.6.0",
"slugify": "^1.6.5",
"shortid": "^2.2.16"
},
"devDependencies": {
"nodemon": "^1.19.3"
}
}