-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
76 lines (76 loc) · 1.97 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "jira-express",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "npm run start:chrome",
"start:chrome": "TARGET_BROWSER=chrome ./scripts/start.js",
"start:firefox": "TARGET_BROWSER=firefox ./scripts/start.js",
"build": "npm run build:chrome",
"build:chrome": "TARGET_BROWSER=chrome ./scripts/build.js",
"build:firefox": "TARGET_BROWSER=firefox ./scripts/build.js",
"test": "react-scripts test",
"eject": "react-scripts eject",
"typecheck": "tsc",
"lint": "eslint 'src/' --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint --fix 'src/' --ext .js,.jsx,.ts,.tsx"
},
"dependencies": {
"lodash": "^4.17.20",
"polished": "^3.6.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"react-scripts": "^3.4.3",
"styled-components": "^5.1.1",
"styled-icons": "^10.17.0",
"styled-normalize": "^8.0.7",
"typescript": "^4.0.2",
"use-http": "^1.0.13"
},
"devDependencies": {
"@types/firefox-webext-browser": "^78.0.1",
"@types/jest": "^26.0.10",
"@types/lodash": "^4.14.159",
"@types/node": "^14.6.0",
"@types/react": "^16.9.46",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.5",
"@types/styled-components": "^5.1.2",
"copy-webpack-plugin": "^6.0.3",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"webpack-extension-reloader": "^1.1.4"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
"last 1 chrome version"
],
"development": [
"last 1 chrome version"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run typecheck"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
],
"*.json": [
"prettier --write"
],
"*.md": [
"prettier --write"
]
}
}