forked from mome-public/react-typescript-firebase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
121 lines (121 loc) · 3.77 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "react-typescript-firebase",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@storybook/react": "^6.0.22",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.0.4",
"@testing-library/user-event": "^12.1.6",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.2",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"@types/storybook__react": "^5.2.1",
"axios": "^0.20.0",
"date-fns": "^2.16.1",
"firebase": "^7.21.1",
"lodash": "^4.17.20",
"mobx": "^5.15.7",
"mobx-react": "^6.3.0",
"node-sass": "^4.14.1",
"react": "^16.13.1",
"react-device-detect": "^1.13.1",
"react-docgen-typescript-webpack-plugin": "^1.1.0",
"react-dom": "^16.13.1",
"react-ga": "^3.1.2",
"react-helmet": "^6.1.0",
"react-hook-form": "^6.8.6",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.3",
"typescript": "~4.0.3"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-app-rewired eject",
"storybook": "start-storybook -p 9009 -s build",
"build:storybook": "build-storybook -s build -o build/storybook",
"lint": "npm run lint:es && npm run lint:style",
"lint:fix": "npm run lint:es:fix && npm run lint:style:fix",
"lint:es": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
"lint:es:fix": "eslint --fix 'src/**/*.{js,jsx,ts,tsx}'",
"lint:style": "stylelint 'src/**/*.css'",
"lint:style:fix": "stylelint --fix 'src/**/*.css'",
"lint:conflict": "eslint --print-config .eslintrc.js | eslint-config-prettier-check",
"postinstall": "typesync"
},
"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"
]
},
"devDependencies": {
"@storybook/addon-actions": "^6.0.22",
"@storybook/addon-console": "^1.2.2",
"@storybook/addon-knobs": "^6.0.22",
"@storybook/addon-links": "^6.0.22",
"@storybook/addon-storysource": "^6.0.22",
"@storybook/addon-viewport": "^6.0.22",
"@storybook/preset-create-react-app": "^3.1.4",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/lodash": "^4.14.161",
"@types/node-sass": "^4.11.1",
"@types/prettier": "^2.1.1",
"@types/react-helmet": "^6.1.0",
"@types/react-router": "^5.1.8",
"@types/react-router-dom": "^5.1.5",
"@types/stylelint": "^9.10.1",
"@types/testing-library__jest-dom": "^5.9.3",
"@types/webpack-bundle-analyzer": "^3.8.0",
"@typescript-eslint/eslint-plugin": "4.0.1",
"@typescript-eslint/parser": "4.0.1",
"customize-cra": "^1.0.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prefer-arrow": "^1.2.2",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.2",
"eslint-plugin-react-hooks": "^4.1.2",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"node-sass-glob-importer": "^5.3.2",
"prettier": "^2.1.2",
"react-app-rewired": "^2.1.6",
"sass-loader": "^7.3.1",
"stylelint": "^13.7.2",
"stylelint-config-recess-order": "^2.1.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-order": "^4.1.0",
"webpack-bundle-analyzer": "^3.9.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --fix"
],
"src/**/*.css": [
"stylelint --fix"
]
}
}