-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (45 loc) · 1.2 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
{
"name": "batch-9-lumen",
"version": "1.0.0",
"description": "Lumen project repository.",
"main": "index.js",
"scripts": {
"server": "npm start --prefix server",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"test": "yarn test:client && yarn test:server",
"test:client": "cd client && yarn && yarn test",
"test:server": "cd server && yarn && yarn test",
"lint": "eslint --ext js,jsx ./",
"lint:fix": "eslint --fix --ext js,jsx ./"
},
"author": "Sumit Nihalani",
"license": "ISC",
"devDependencies": {
"concurrently": "^4.1.1",
"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.3",
"lint-staged": "^9.2.1",
"prettier": "^1.18.2"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "lint-staged"
}
},
"dependencies": {}
}