forked from Aman-Codes/pennamechooser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1.13 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
{
"name": "pennamechooser",
"version": "1.0.0",
"description": "Pen Name Chooser",
"main": "index.js",
"repository": "https://github.com/Aman-Codes/pennamechooser.git",
"author": "Aman Dwivedi <[email protected]>",
"license": "MIT",
"scripts": {
"install-backend": "cd backend && npm install",
"install-frontend": "cd frontend && npm install",
"install-concurrently": "npm install -g concurrently",
"install-nodemon": "npm install -g nodemon",
"install-pre": "npm run install-nodemon && npm run install-concurrently",
"install-dep": "npm run install-backend && npm run install-frontend",
"install-all": "npm run install-pre && npm run install-dep",
"backend": "nodemon app.js --prefix backend",
"frontend": "npm start --prefix frontend",
"lint": "eslint ./",
"dev": "concurrently \"npm run backend\" \"npm run frontend\""
},
"devDependencies": {
"eslint": "^7.20.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"nodemon": "^2.0.7",
"prettier": "^2.2.1"
}
}