-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
116 lines (116 loc) · 3.28 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
107
108
109
110
111
112
113
114
115
116
{
"name": "wso-react",
"version": "0.1.0",
"private": true,
"dependencies": {
"@reduxjs/toolkit": "^1.8.3",
"axios": "^0.26.1",
"classnames": "^2.3.1",
"dayjs": "^1.10.7",
"dom-to-image": "^2.6.0",
"google-client-api": "^1.0.4",
"jwt-decode": "^3.1.2",
"prop-types": "^15.8.1",
"react": "^16.8.6",
"react-date-picker": "^7.8.1",
"react-dom": "^16.8.6",
"react-ga": "^2.7.0",
"react-google-charts": "^3.0.14",
"react-icons": "^3.10.0",
"react-modal": "^3.15.1",
"react-redux": "^7.2.8",
"react-router-dom": "6",
"react-scripts": "^5.0.1",
"react-spinners": "^0.13.4",
"react-table": "^7.8.0",
"redux-persist": "^6.0.0",
"redux-saga": "^1.0.5",
"serialize-javascript": "3.1.0",
"timeago.js": "^4.0.0-beta.2",
"typeface-source-sans-pro": "^0.0.75",
"wso-api-client": "24.02.19"
},
"devDependencies": {
"@types/jest": "^27.5.1",
"@types/react": "^16.14.29",
"@types/react-calendar": "^3.9.0",
"@types/react-dom": "^16.9.16",
"@types/redux-logger": "^3.0.9",
"deep-freeze": "^0.0.1",
"eslint": "^8.21.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-utils": "3.0.0",
"glob-all": "^3.3.0",
"husky": "^8.0.1",
"identity-obj-proxy": "^3.0.0",
"jest-junit": "^6.4.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"progress-bar-webpack-plugin": "^1.12.1",
"purgecss": "^1.4.1",
"react-test-renderer": "^16.8.6",
"redux-logger": "^3.0.6",
"typescript": "^3.7.2",
"webpack-bundle-analyzer": "^3.3.2"
},
"scripts": {
"analyze": "node scripts/analyze",
"start": "GENERATE_SOURCEMAP=false react-scripts start",
"start-windows": "set GENERATE_SOURCEMAP=false && npx react-scripts start",
"build": "react-scripts build",
"postbuild": "purgecss --config ./purgecss.config.js --out build/static/css",
"test": "react-scripts test",
"test:ci": "CI=true react-scripts test ",
"eject": "react-scripts eject",
"lint": "eslint ./src --ext=js,jsx,ts,tsx",
"lint:fix": "eslint ./src --ext=js,jsx,ts,tsx --fix",
"format": "prettier --write './src/**/*.{js,jsx,ts,tsx,html,css,json}'",
"format:check": "prettier --write './src/**/*.{js,jsx,ts,tsx,html,css,json}'",
"prepare": "husky install"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest": {
"coverageReporters": [
"text",
"cobertura"
]
},
"jest-junit": {
"output": "coverage/junit/junit.xml",
"usePathForSuiteName": "true"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --ext=js,jsx,ts,tsx --fix",
"prettier --write"
],
"*.{html,css,json}": [
"prettier --write"
]
},
"resolutions": {
"**/**/dot-prop": ">=5.2.0",
"**/**/elliptic": ">=6.5.3",
"**/**/kind-of": ">=6.0.3",
"**/**/minimist": ">=1.2.2",
"**/**/object-path": ">=0.11.5",
"**/**/node-forge": ">=0.10.0",
"**/**/node-notifier": ">=8.0.1",
"**/**/immer": ">=8.0.1",
"@types/react": "^16.14.29",
"@types/react-dom": "^16.9.16"
}
}