-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.25 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": "conghoablog",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"server": "nodemon server.js --ignore client",
"client": "npm run start --prefix client",
"start:prod": "set NODE_ENV=production&&nodemon server.js",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"watch:js": "parcel watch ./public/js/index.js --out-dir ./public/js --out-file bundle.js",
"build:js": "parcel build ./public/js/index.js --out-dir ./public/js --out-file bundle.js",
"heroku-postbuild": "npm install --prefix client && npm run build --prefix client"
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/polyfill": "^7.11.5",
"axios": "^0.20.0",
"bcryptjs": "^2.4.3",
"cloudinary": "^1.23.0",
"concurrently": "^5.3.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"ejs": "^3.1.5",
"express": "^4.17.1",
"faker": "^5.1.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.10.7",
"multer": "^1.4.2",
"pug": "^3.0.0",
"slugify": "^1.4.5",
"validator": "^13.1.17"
},
"devDependencies": {
"parcel-bundler": "^1.12.4"
},
"engines": {
"node": "10.x"
}
}