-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 3.95 KB
/
package.json
File metadata and controls
129 lines (129 loc) · 3.95 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
120
121
122
123
124
125
126
127
128
129
{
"name": "seed",
"version": "0.1.0",
"private": true,
"dependencies": {
"@formatjs/intl-pluralrules": "^1.3.9",
"@formatjs/intl-relativetimeformat": "^4.5.1",
"@reduxjs/toolkit": "^1.5.0",
"@sentry/browser": "^5.10.0",
"babel-polyfill": "6.26.0",
"env-cmd": "8.0.2",
"formik": "2.0.6",
"history": "4.10.1",
"jwt-decode": "^2.2.0",
"lodash": "^4.17.15",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-intl": "3.9.1",
"react-redux": "^7.2.2",
"react-router": "5.2.0",
"react-router-dom": "5.2.0",
"react-scripts": "^4.0.3",
"react-use": "^17.2.1",
"redux": "4.0.5",
"redux-persist": "6.0.0",
"redux-saga": "^1.1.3",
"styled-components": "4.4.1",
"superagent": "5.1.2"
},
"scripts": {
"audit-dependencies": "check-audit --yarn",
"start": "REACT_APP_ENV=local react-app-rewired start",
"build": "env-cmd .env.${REACT_APP_ENV} react-app-rewired build",
"test": "react-app-rewired test --maxWorkers=4",
"eject": "react-app-rewired eject",
"analyze": "env-cmd .env.${REACT_APP_ENV} react-app-rewired build --analyze-bundle",
"test:coverage": "npm run test -- --coverage",
"generate": "plop --plopfile scripts/generators/index.js",
"lint": "eslint 'src/**/*.{js,ts,tsx}'",
"lint:fix": "eslint 'src/**/*.{js,ts,tsx}' --fix",
"lint-style": "stylelint 'src/**/*.style.{ts,tsx}' 'src/**/style.{ts,tsx}'",
"type-check": "tsc"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"!src/**/*.test.js",
"!src/**/actions.js",
"!src/**/index.js",
"!src/**/*.wrap.js",
"!src/index.js",
"!src/tempPolyfills.js",
"!src/redux/reducers.js",
"!src/redux/sagas.js",
"!src/redux/store.js"
],
"coverageThreshold": {
"global": {
"statements": 0,
"branches": 0,
"functions": 0,
"lines": 0
}
}
},
"bundlesize": [
{
"path": "./build/static/js/*.js",
"maxSize": "200 kB"
}
],
"devDependencies": {
"@testing-library/react": "11.2.5",
"@testing-library/jest-dom": "5.11.9",
"@types/cheerio": "^0.22.15",
"@types/history": "^4.7.2",
"@types/jest": "^24.0.23",
"@types/jwt-decode": "^2.2.1",
"@types/lodash": "^4.14.149",
"@types/node": "^10.12.18",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.2",
"@types/react-intl": "^3.0.0",
"@types/react-redux": "^7.1.16",
"@types/react-router": "^5.1.12",
"@types/react-router-dom": "^5.1.7",
"@types/react-test-renderer": "^17.0.1",
"@types/styled-components": "^5.1.9",
"@types/superagent": "^4.1.4",
"@types/webpack-env": "^1.14.1",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"babel-plugin-styled-components": "1.10.6",
"bundlesize": "^0.18.0",
"cypress": "^3.7.0",
"eslint-config-prettier": "8.1.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jest": "23.1.1",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-mysticatea": "4.2.4",
"eslint-plugin-prefer-object-spread": "1.2.1",
"eslint-plugin-prettier": "3.1.1",
"eslint-plugin-react": "7.22.0",
"eslint-plugin-risxss": "^1.1.1",
"npm-audit-resolver": "^2.2.0",
"plop": "2.5.3",
"prettier": "1.19.1",
"react-app-rewire-webpack-bundle-analyzer": "^1.1.0",
"react-app-rewired": "2.1.5",
"react-test-renderer": "^17.0.1",
"redux-saga-test-plan": "^4.0.1",
"stylelint": "^12.0.0",
"stylelint-config-prettier": "^7.0.0",
"stylelint-config-standard": "^19.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-declaration-strict-value": "^1.1.7",
"stylelint-processor-styled-components": "^1.9.0",
"typescript": "^4.2.3",
"wait-on": "^3.2.0",
"webpack-manifest-plugin": "^2.0.4"
}
}