-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.69 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
{
"name": "frontend",
"version": "0.0.0",
"private": true,
"dependencies": {
"@ant-design/charts": "^1.2.10",
"@craco/craco": "^6.2.0",
"@headlessui/react": "^1.4.0",
"@heroicons/react": "^1.0.3",
"@types/classnames": "^2.2.11",
"@types/deep-equal": "^1.0.1",
"@types/dompurify": "^2.2.1",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.28",
"@types/query-string": "^6.3.0",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@types/react-redux": "^7.1.16",
"@types/react-router": "^5.1.11",
"@types/react-router-dom": "^5.1.7",
"@types/utf8": "^2.1.6",
"@types/xtend": "^4.0.3",
"antd": "^4.16.11",
"axios": "^0.21.1",
"classnames": "^2.2.6",
"customize-cra": "^1.0.0",
"deep-equal": "^2.0.5",
"dompurify": "^2.2.7",
"moment": "^2.29.1",
"number-to-words-en": "^1.2.5",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-css-theme-switcher": "^0.3.0",
"react-csv": "^2.0.3",
"react-dom": "^17.0.1",
"react-icons": "^4.2.0",
"react-moment": "^1.1.1",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.2",
"react-to-print": "^2.13.0",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"short-uuid": "^4.2.0",
"tslint": "^6.1.3",
"typescript": "^4.1.5",
"xtend": "^4.0.2"
},
"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": "npx gulp less && craco start",
"less-watch": "npx gulp watch",
"build": "npx gulp less && craco build",
"test": "craco test",
"eject": "react-scripts eject"
},
"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": {
"gulp": "^4.0.2",
"gulp-autoprefixer": "^8.0.0",
"gulp-csso": "^4.0.1",
"gulp-debug": "^4.0.0",
"gulp-less": "^5.0.0",
"gulp-watch": "^5.0.1",
"less-plugin-npm-import": "^2.1.0",
"tslint-config-prettier": "^1.18.0"
}
}