-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 4.02 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
{
"name": "personal-page",
"version": "1.1.1",
"private": true,
"dependencies": {
"@ackee/antonio-core": "4.0.x",
"@ackee/jerome": "5.0.1",
"@ackee/react-scripts": "3.0.0",
"@lokse/plugin-fallback": "^2.2.0",
"@radix-ui/react-avatar": "^1.0.0",
"@reduxjs/toolkit": "1.x",
"@sentry/react": "6.x",
"@types/lodash": "^4.14.149",
"@types/node": "^16.7.13",
"@types/react": "^17.0.20",
"@types/react-dom": "^17.0.9",
"@types/react-redux": "^7.1.6",
"@types/react-router-dom": "^5.1.3",
"connected-react-router": "6.8.x",
"fela": "12.1.2",
"fela-monolithic": "12.1.2",
"fela-plugin-embedded": "12.1.2",
"fela-plugin-expand-shorthand": "12.1.2",
"fela-plugin-extend": "12.1.2",
"fela-plugin-fallback-value": "12.1.2",
"fela-plugin-friendly-pseudo-class": "12.1.2",
"fela-plugin-named-keys": "12.1.2",
"fela-plugin-placeholder-prefixer": "12.1.2",
"fela-plugin-unit": "12.1.2",
"fela-plugin-validator": "12.1.2",
"history": "4.x",
"lodash": "4.17.x",
"loglevel": "1.x",
"prettier": "2.7.1",
"prettier-config-ackee": "0.0.16",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-fela": "12.1.2",
"react-intl": "5.24.1",
"react-redux": "7.x",
"react-router-dom": "5.x",
"redux": "4.x",
"redux-saga": "1.x",
"reselect": "4.x",
"scrollreveal": "^4.0.9",
"typescript": "^4.4.2",
"web-vitals": "^2.1.0"
},
"devDependencies": {
"@ackee/eslint-config": "^4.1.0",
"@lokse/plugin-prettier": "^2.2.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.2.1",
"@types/jest": "^27.0.1",
"@types/scrollreveal": "^0.0.8",
"gitmoji-changelog": "^2.3.0",
"husky": "7.0.0",
"imagemin-lint-staged": "0.4.0",
"lint-staged": "12.1.6",
"lokse": "2.1.2"
},
"scripts": {
"start": "export REACT_APP_BUILD_ENV=development; export REACT_APP_IS_LOCALHOST=true; yarn localize && react-scripts start",
"build": "yarn build:development",
"test": "react-scripts test",
"eject": "react-scripts eject",
"build:development": "export REACT_APP_BUILD_ENV=development; react-scripts build",
"build:stage": "export REACT_APP_BUILD_ENV=stage; react-scripts build",
"build:production": "export REACT_APP_BUILD_ENV=production; react-scripts build",
"build:master": "yarn build:production",
"test:watch": "export REACT_APP_BUILD_ENV=test; react-scripts test",
"circular-modules": "ackee-react-scripts check-circular-modules --ignore-index-files",
"localize": "source .env.local; lokse update",
"localizations": "lokse open",
"analyze-bundle": "yarn build:production --stats && npx webpack-bundle-analyzer build/bundle-stats.json",
"ci-test": "export REACT_APP_BUILD_ENV=test; export CI=true; react-scripts test --env=jsdom",
"ci-circular-modules": "yarn circular-modules",
"ci-lighthouse": "npx @lhci/cli && lhci autorun",
"version": "yarn changelog && code CHANGELOG.md --wait && git add CHANGELOG.md",
"changelog": "git fetch origin && npx gitmoji-changelog",
"postprepare": "husky install"
},
"browserslist": [
"extends @ackee/browserslist-config"
],
"lint-staged": {
"*.{js,jsx,json,scss,less,css,md}": [
"prettier --config ./prettier.config.js --write"
],
"**/*.{png,jpeg,jpg,gif,svg,webp}": [
"imagemin-lint-staged"
]
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/node_modules",
"<rootDir>/src/config/config.test.js"
]
},
"resolutions": {
"marked": ">=4.0.10",
"nth-check": ">=2.0.1",
"minimatch": ">=3.0.5"
}
}