-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.77 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.77 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
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
{
"name": "test-react-app",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint:eslint": "eslint --ext .js,.ts,.tsx .",
"lint:stylelint": "stylelint '**/*.{ts,tsx}'",
"lint:prettier": "prettier -c '**/*.{js,json,ts,tsx,gql,md}'",
"fix:prettier": "prettier --write '**/*.{js,json,ts,tsx,gql,md}'",
"lint": "npm run lint:eslint && npm run lint:stylelint && npm run lint:prettier"
},
"dependencies": {
"@hot-loader/react-dom": "^16.11.0",
"@material-ui/core": "latest",
"@material-ui/icons": "^4.9.1",
"axios": "^0.19.0",
"connected-react-router": "^6.6.1",
"css-loader": "^4.2.2",
"date-fns": "^2.8.1",
"faker": "^4.1.0",
"file-loader": "^6.1.0",
"file-saver": "^2.0.2",
"history": "^4.10.1",
"immutable": "^3.8.2",
"msal": "^1.3.0",
"query-string": "^6.9.0",
"react": "latest",
"react-aad-msal": "^2.3.5",
"react-dom": "latest",
"react-hot-loader": "^4.12.18",
"react-infinite-scroll-hook": "^2.0.1",
"react-redux": "^7.1.3",
"react-router-dom": "^5.1.2",
"react-router-hash-link": "^1.2.2",
"react-scripts": "latest",
"redux": "^4.0.5",
"redux-persist": "^6.0.0",
"redux-saga": "^1.1.3",
"reselect": "^4.0.0",
"seamless-immutable": "^7.1.4",
"style-loader": "^1.2.1",
"styled-components": "^5.0.0",
"typescript-fsa": "^3.0.0",
"typescript-fsa-reducers": "^1.2.1",
"uuid": "^7.0.3",
"yup": "^0.28.3"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@redux-saga/testing-utils": "^1.1.3",
"@types/copy-webpack-plugin": "^5.0.0",
"@types/faker": "^4.1.10",
"@types/file-saver": "^2.0.1",
"@types/html-webpack-plugin": "^3.2.1",
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"@types/react-redux": "^7.1.6",
"@types/react-router-dom": "^5.1.3",
"@types/react-router-hash-link": "^1.2.1",
"@types/react-test-renderer": "^16.9.1",
"@types/sanitize-html": "^1.23.2",
"@types/styled-components": "^4.4.2",
"@types/uuid": "^7.0.3",
"@types/webpack": "^4.41.2",
"@types/webpack-dev-server": "^3.9.0",
"@types/webpack-merge": "^4.1.5",
"@types/yup": "^0.26.32",
"@typescript-eslint/eslint-plugin": "^2.13.0",
"@typescript-eslint/parser": "^2.13.0",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^2.3.0",
"html-webpack-plugin": "^4.4.1",
"identity-obj-proxy": "^3.0.0",
"lint-staged": "^9.5.0",
"prettier": "^2.0.5",
"react-hook-form": "^4.9.8",
"react-test-renderer": "^16.12.0",
"regenerator-runtime": "^0.13.5",
"require-context": "^1.1.0",
"stylelint": "^13.7.0",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.9.0",
"ts-loader": "^6.2.1",
"ts-node": "^8.5.4",
"typescript": "^3.7.4",
"typescript-plugin-styled-components": "^1.4.3",
"webpack": "^4.41.4",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1",
"webpack-merge": "^4.2.2",
"webpack-subresource-integrity": "^1.4.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}