-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.12 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
{
"name": "personal-blog",
"version": "1.0.0",
"description": "a personal blog system",
"main": "index.js",
"repository": "https://github.com/davidzambo/node-blog.git",
"author": "<[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"client": "cd client && yarn start",
"server": "nodemon server.js",
"dev": "concurrently --kill-others-on-fail \"yarn server\" \"yarn client\""
},
"dependencies": {
"axios": "^0.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"base64-img": "^1.0.4",
"body-parser": "^1.18.2",
"calendar-base": "^0.3.0",
"cookie-parser": "^1.4.3",
"easyimage": "^3.1.0",
"express": "^4.16.2",
"history": "^4.7.2",
"js-cookie": "^2.2.0",
"mailgun-js": "^0.16.0",
"moment": "^2.21.0",
"mongoose": "^5.0.8",
"multer": "^1.3.0",
"password-hash": "^1.2.2",
"path": "^0.12.7",
"pm2": "^2.10.3",
"prop-types": "^15.6.1",
"react-app-rewired": "^1.6.2",
"react-scripts": "^2.0.5",
"slug": "^0.9.1",
"uuidv4": "^1.0.0"
},
"devDependencies": {
"dotenv": "^5.0.1"
},
"pre-push": []
}