forked from pesto-students/batch-7-trailblazers
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.12 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
36
37
38
39
40
41
42
43
44
45
{
"name": "batch-7-trailblazers",
"version": "1.0.0",
"description": "Online Issue Tracker",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/pesto-students/batch-7-trailblazers.git"
},
"author": "batch-7-trailblazers",
"license": "MIT",
"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-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",
"prettier": "^1.17.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint"
]
},
"scripts": {
"test": "yarn test:client && yarn test:server",
"test:client": "cd client && yarn && yarn test",
"test:server": "cd server && yarn && yarn test",
"build:server": "cd server && yarn build"
},
"dependencies": {
"dotenv": "^8.0.0"
}
}