-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.92 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.92 KB
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
{
"name": "excel",
"version": "0.1.0",
"private": true,
"homepage": "https://roxers.github.io/excel",
"dependencies": {
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@inovua/reactdatagrid-community": "^4.21.0",
"@inovua/reactdatagrid-enterprise": "^4.21.0",
"@mui/material": "^5.10.6",
"@mui/x-date-pickers": "^5.0.2",
"@reduxjs/toolkit": "^1.8.5",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^13.5.0",
"antd": "^4.23.2",
"axios": "^0.27.2",
"gh-pages": "^4.0.0",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"react-redux": "^8.0.2",
"react-router-dom": "^6.3.0",
"react-scripts": "5.0.1",
"react-select": "^5.5.4",
"redux-saga": "^1.2.1",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "react-scripts start",
"build": "npm run stylelint && npm run prettier && npm run eslint && INLINE_RUNTIME_CHUNK=false react-scripts build",
"build:no-check": "react-scripts build",
"clean": "(rm -rf build || :) && (rm -rf node_modules/* || :)",
"test": "MOCKS_ENABLED=true react-scripts test",
"test:coverage": "MOCKS_ENABLED=true npm test -- --coverage --watchAll=false",
"eject": "react-scripts eject",
"jest": "react-scripts test --watchAll=false",
"stylelint": "stylelint \"**/*.scss\"",
"prettier": "prettier --check . --ignore-path ./.prettierignore",
"eslint": "eslint \"**/*.{js,jsx}\" --ignore-path ./.eslintignore",
"stylelint-fix": "stylelint --fix \"**/*.scss\"",
"prettier-fix": "prettier . --write --ignore-path ./.prettierignore",
"eslint-fix": "eslint \"**/*.{js,jsx}\" --fix --ignore-path ./.eslintignore",
"freshinstall": "npm run clean && npm i",
"pretest": "npm run prettier && npm run stylelint && npm run eslint",
"cypress": "cypress open",
"cypress:all": "cypress run",
"predeploy": "npm run build:no-check",
"deploy": "gh-pages -b master -d build"
},
"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": {
"@zarconontol/enzyme-adapter-react-18": "^0.7.3",
"enzyme": "^3.11.0",
"eslint": "^8.23.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-only-warn": "^1.0.3",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.4",
"node-sass": "^7.0.1",
"prettier": "^2.7.1",
"stylelint": "^14.11.0",
"stylelint-config-standard": "^28.0.0"
}
}