-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "music-app-project",
"version": "1.0.0",
"description": "A MERN Music Player Application",
"main": "index.js",
"workspaces": {
"packages": [
"client",
"server"
]
},
"repository": "https://github.com/pesto-students/music-app-project",
"author": "Karan Sapolia <sapoliakaran@gmail.com>",
"license": "MIT",
"private": true,
"scripts": {
"server": "cd server && yarn dev",
"client": "cd client && yarn start",
"dev": "concurrently \"yarn run server\" \"yarn run client\""
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "lint-staged"
}
},
"devDependencies": {
"concurrently": "^4.1.2",
"eslint": "6.1.0",
"eslint-config-airbnb": "18.0.1",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"husky": "^3.0.4",
"lint-staged": "^9.2.5",
"prettier": "^1.18.2"
}
}