-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.19 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
{
"name": "reactober",
"version": "0.1.0",
"private": true,
"scripts": {
"analyze": "source-map-explorer --gzip 'build/static/js/*.js'",
"start": "concurrently \"npm:start:frontend\" \"npm:start:backend\"",
"start:frontend": "npm run prepare:config && cross-env ESLINT_NO_DEV_ERRORS='true' BROWSER=none react-scripts start",
"start:mock": "npm run prepare:config && cross-env ESLINT_NO_DEV_ERRORS='true' BROWSER=none REACT_APP_MOCK_BACKEND=true react-scripts start",
"start:backend": "ts-node --project mockBackend/tsconfig.json mockBackend/jsonServer.ts",
"lint": "eslint ./src/**/*",
"build": "cross-env CONFIG_ENV=prod npm run prepare:config && react-scripts build",
"prepare:config": "node ./appConfigs/prepareConfig.js",
"test": "react-scripts test",
"eject": "react-scripts eject",
"storybook": "cross-env ESLINT_NO_DEV_ERRORS='true' BROWSER=none start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public"
},
"dependencies": {
"@fontsource/creepster": "4.5.0",
"@fontsource/faustina": "4.5.0",
"@fortawesome/fontawesome-svg-core": "1.2.36",
"@fortawesome/free-solid-svg-icons": "5.15.4",
"@fortawesome/react-fontawesome": "0.1.15",
"@sentry/react": "6.13.3",
"@sentry/tracing": "6.13.3",
"i18next": "21.3.2",
"lodash": "4.17.21",
"party-js": "2.1.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-i18next": "11.12.0",
"react-query": "3.26.0",
"react-redux": "7.2.5",
"react-router-dom": "5.3.0",
"react-scripts": "4.0.3",
"redux": "4.1.1",
"redux-thunk": "2.3.0",
"styled-components": "5.3.1",
"typescript": "4.4.3"
},
"devDependencies": {
"@axe-core/react": "4.3.1",
"@storybook/addon-actions": "6.3.12",
"@storybook/addon-essentials": "6.3.12",
"@storybook/addon-links": "6.3.12",
"@storybook/node-logger": "6.3.12",
"@storybook/preset-create-react-app": "3.2.0",
"@storybook/react": "6.3.12",
"@testing-library/jest-dom": "5.14.1",
"@testing-library/react": "11.2.7",
"@testing-library/react-hooks": "7.0.2",
"@testing-library/user-event": "12.8.3",
"@types/jest": "26.0.24",
"@types/json-server": "0.14.4",
"@types/node": "12.20.27",
"@types/react": "17.0.27",
"@types/react-dom": "17.0.9",
"@types/react-redux": "7.1.19",
"@types/react-router-dom": "5.3.1",
"@types/styled-components": "5.1.14",
"concurrently": "6.3.0",
"cross-env": "7.0.3",
"eslint": "7.32.0",
"eslint-config-es": "3.30.15",
"eslint-plugin-styled-components-a11y": "0.0.34",
"jest-styled-components": "7.0.5",
"json-server": "0.16.3",
"source-map-explorer": "2.5.2",
"storybook-addon-styled-component-theme": "2.0.0",
"ts-node": "10.2.1"
},
"browserslist": {
"production": [
">0.2%",
"not IE 11",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"eslintConfig": {
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
}
}