-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
87 lines (87 loc) · 2.68 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
{
"name": "react-redux-typescript-boilerplate",
"version": "0.0.0-development",
"author": "Meemaw <[email protected]>",
"license": "MIT",
"engines": {
"node": "^8.10.0 || ^10.13.0 || >=11.10.1"
},
"repository": {
"type": "git",
"url": "https://github.com/Meemaw/react-redux-typescript-boilerplate"
},
"bugs": {
"url": "https://github.com/Meemaw/react-redux-typescript-boilerplate/issues"
},
"scripts": {
"start": "EXTEND_ESLINT=true react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"test:e2e": "testcafe chrome e2e/specs",
"lint": "concurrently \"npm run prettier\" \"npm run eslint\"",
"eslint": "eslint --max-warnings 0 'src/**/*.{ts,tsx}' 'e2e/**/*.{ts,tsx}' --config .eslintrc.production.js",
"prettier": "prettier -l 'src/**/*' 'e2e/**/*'",
"prettier:fix": "yarn prettier --write",
"storybook": "start-storybook -p 6006 -s public",
"storybook:build": "build-storybook"
},
"dependencies": {
"@reduxjs/toolkit": "^1.3.1",
"ky": "^0.19.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"react-router-dom": "^5.1.2",
"redux": "^4.0.5"
},
"devDependencies": {
"@storybook/addons": "^5.3.17",
"@storybook/preset-create-react-app": "^2.1.1",
"@storybook/react": "^5.3.17",
"@testing-library/jest-dom": "^5.3.0",
"@testing-library/react": "^9.4.0",
"@types/lodash": "^4.14.149",
"@types/react": "^16.9.26",
"@types/react-dom": "^16.9.5",
"@types/react-redux": "^7.1.7",
"@types/react-router-dom": "^5.1.3",
"@types/sinon": "^7.5.2",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"babel-jest": "24.9.0",
"concurrently": "^5.1.0",
"customize-cra": "^0.9.1",
"customize-cra-react-refresh": "^1.0.1",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-lodash": "^6.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-testcafe": "^0.2.1",
"eslint-plugin-testing-library": "^2.2.3",
"husky": "^4.2.3",
"prettier": "^2.0.2",
"pretty-quick": "^2.0.1",
"react-app-rewired": "^2.1.5",
"react-scripts": "3.4.1",
"serve": "^11.3.0",
"sinon": "^9.0.1",
"testcafe": "^1.8.3",
"typescript": "^3.7.5",
"wait-on": "^4.0.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}