-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.07 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.07 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
{
"name": "biller-app",
"version": "0.0.1",
"description": "MERN Stack application for Online Bill Payment System ",
"main": "server.js",
"scripts": {
"deps:api": "cd api && npm i && cd ..",
"deps:app": "cd app && npm i && cd ..",
"deps": "npm i && npm run deps:api && npm run deps:app",
"format": "prettier --write \"**/*.{js,jsx,html,scss}\"",
"format:check": "prettier -c \"**/*.{js,jsx,html,scss}\"",
"start": "node server.js",
"server": "nodemon --ignore app/",
"app": "npm start --prefix app",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix api && npm install --prefix app && npm run build --prefix app",
"build": "npm install && npm install --dotenv-extended && npm install --prefix api"
},
"keywords": [
"MERN"
],
"author": "",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"js-logger": "^1.6.0",
"stripe": "^8.118.0"
},
"devDependencies": {
"dotenv": "^8.2.0",
"nodemon": "^2.0.6",
"prettier": "^2.1.2"
}
}