-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.31 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "cra-modular-redux-auth0-saga-browser-extension",
"homepage": "/",
"version": "0.1.3",
"private": true,
"license": "MIT",
"author": "Bartek Kus <[email protected]> (https://bartekus.com/)",
"repository": {
"type": "git",
"url": "https://github.com/bartekus/cra-modular-redux-auth0-saga-browser-extension.git"
},
"bugs": {
"url": "https://github.com/bartekus/cra-modular-redux-auth0-saga-browser-extension/issues"
},
"scripts": {
"start": "node ./scripts/watch",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"format": "prettier --write 'src/**/*.{ts,tsx,json}'",
"commit": "node utils/commit",
"postinstall": "patch-package && node utils/postinstall"
},
"dependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/chrome": "0.0.103",
"@types/jest": "^24.0.0",
"@types/lodash": "4.14.149",
"@types/node": "^12.0.0",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"@types/react-redux": "7.1.7",
"@types/redux-logger": "3.0.7",
"@types/url-parse": "1.4.3",
"@types/webpack-env": "1.15.1",
"crypto": "1.0.1",
"lodash": "4.17.21",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "7.2.0",
"react-scripts": "3.4.1",
"redux": "4.0.5",
"redux-logger": "3.0.6",
"redux-saga": "1.1.3",
"typescript": "~3.7.2",
"url-parse": "1.5.9",
"webext-redux": "2.1.6"
},
"devDependencies": {
"husky": "4.2.3",
"lint-staged": "10.1.1",
"patch-package": "6.2.1",
"postinstall-postinstall": "2.1.0",
"prettier": "2.0.2",
"webpack-extension-reloader": "1.1.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{ts,tsx,json}": [
"npm run format",
"git add"
]
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"keywords": [
"cra",
"modular",
"redux",
"auth0",
"saga",
"browser",
"extension"
]
}