-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 1.22 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
{
"name": "scryptonian",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/pesto-students/batch-7-Scryptonian.git",
"author": "",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-react-app": "^4.0.1",
"eslint-plugin-flowtype": "^3.9.1",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jest": "^22.6.4",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-react-hooks": "^1.6.0",
"husky": "^2.3.0",
"lint-staged": "^8.1.7"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"yarn lint"
]
},
"scripts": {
"start": "cd client && yarn start",
"lint": "eslint . --ext js,jsx",
"lintfix": "eslint . --ext js,jsx --fix",
"postinstall": "yarn install:client && yarn install:server",
"install:client": "cd client && yarn",
"install:server": "cd server && yarn",
"test": "yarn test:client && yarn test:server",
"test:client": "cd client && yarn && yarn test",
"test:server": "cd server && yarn && yarn test"
}
}