-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 749 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 749 Bytes
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
{
"name": "morejuststore",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "source .env; nodemon app.js",
"prestart": "source .env; npm run build-front",
"test": "echo \"Error: no test specified\" && exit 1",
"build-front": "cd client && npm i && npm run build && cd ..",
"deploy-front": "cd client && npm run deploy && cd ..",
"deploy": "sh deploy.sh",
"start": "node app.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.18.0",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"express-fileupload": "^1.0.0",
"json-stringify-safe": "^5.0.1",
"multer": "^1.4.1",
"request": "^2.88.0"
}
}