-
Notifications
You must be signed in to change notification settings - Fork 102
/
Copy pathpackage.json
37 lines (37 loc) · 1.03 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
{
"name": "inventory-application",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"async": "^3.2.0",
"bcryptjs": "^2.4.3",
"cloudinary": "^1.22.0",
"concurrently": "^5.2.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.5.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"moment": "^2.27.0",
"mongoose": "^5.9.15",
"mongoose-paginate": "^5.0.3",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"multer-storage-cloudinary": "^4.0.0",
"nodemon": "^2.0.4",
"react-moment": "^0.9.7"
},
"devDependencies": {},
"scripts": {
"client-install": "npm install --prefix views",
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm start --prefix views",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix views && npm run build --prefix views"
},
"author": "",
"license": "MIT"
}