-
Notifications
You must be signed in to change notification settings - Fork 91
/
package.json
81 lines (81 loc) · 2.65 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
{
"name": "app-frontend",
"version": "0.1.0",
"private": true,
"dependencies": {
"@craco/craco": "^6.4.5",
"antd": "5.x",
"axios": "^0.21.1",
"classnames": "^2.2.6",
"deep-equal": "^2.0.5",
"moment": "^2.29.1",
"prettier": "^2.2.1",
"qrcode": "^1.5.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^6.0.3",
"react-redux": "^8.0.5",
"react-router-dom": "^5.3.4",
"react-scripts": "^5.0.1",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"remark-gfm": "^1.0.0",
"web-vitals": "^1.0.1",
"yaml": "^1.10.0"
},
"scripts": {
"formatter": "prettier --check './src/**/*.ts*'",
"formatter-write": "prettier --write './src/**/*.ts*'",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"tslint-fix": "tslint --fix -c tslint.json -p tsconfig.json",
"start": "export NODE_OPTIONS=--openssl-legacy-provider && craco start",
"less-watch": "npx gulp watch",
"build": "export NODE_OPTIONS=--openssl-legacy-provider && craco build",
"test": "craco test",
"test:e2e--open": "cypress open",
"test:e2e": "cypress run",
"eject": "react-scripts eject",
"generate-locales": "node scripts/generate-locales.mjs && node scripts/find-untranslated.js",
"populate-misssing-locales": "node scripts/populate-missing-translations.js"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/dom": "^8.2.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/classnames": "^2.2.11",
"@types/deep-equal": "^1.0.1",
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",
"@types/qrcode": "^1.4.2",
"@types/react": "^18.2.22",
"@types/react-dom": "^18.2.7",
"@types/react-redux": "^7.1.31",
"@types/react-router": "^5.1.20",
"@types/react-router-dom": "^5.3.3",
"@types/utf8": "^2.1.6",
"cypress": "^12.5.1",
"gulp-autoprefixer": "^8.0.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.1.5"
}
}