forked from sherryli-qyl/ByteCRM
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·107 lines (107 loc) · 2.9 KB
/
package.json
File metadata and controls
executable file
·107 lines (107 loc) · 2.9 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "bytecrm",
"version": "0.1.0",
"private": true,
"dependencies": {
"@date-io/moment": "^1.3.13",
"@fortawesome/fontawesome-svg-core": "^1.2.30",
"@fortawesome/free-regular-svg-icons": "^5.15.1",
"@fortawesome/free-solid-svg-icons": "^5.14.0",
"@fortawesome/react-fontawesome": "^0.1.11",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@material-ui/pickers": "^3.2.10",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"axios": "^0.20.0",
"export-to-csv": "^0.2.1",
"fetch": "^1.1.0",
"history": "^5.0.0",
"jest-canvas-mock": "^2.3.0",
"jsonwebtoken": "^8.5.1",
"jspdf": "^2.1.1",
"jspdf-autotable": "^3.5.12",
"material-table": "^1.64.0",
"moment": "^2.29.1",
"moment-business-days": "^1.2.0",
"node-sass": "^4.14.1",
"npm-latest-version": "^1.0.2",
"or": "^0.2.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-draggable": "^4.4.3",
"react-file-reader": "^1.1.4",
"react-history": "^0.18.2",
"react-hook-form": "^6.5.3",
"react-icons": "^3.11.0",
"react-outside-click-handler": "^1.3.0",
"react-papaparse": "^3.9.0",
"react-quill": "^1.3.5",
"react-redux": "^7.2.1",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.3",
"react-select": "^3.1.0",
"react-spinners": "^0.9.0",
"react-tooltip": "^4.2.10",
"redux": "^4.0.5",
"sass": "^1.26.10",
"save": "^2.4.0",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^2.0.0",
"styled-components": "^5.1.1",
"typescript": "^4.0.2",
"with-router": "^1.0.1"
},
"scripts": {
"start": "cross-env PORT=8000 react-scripts start",
"build": "react-scripts build",
"test": "jest",
"deploy": "aws s3 sync build/ s3://bytecrm",
"lint": "eslint --fix . --ext .jsx,.js --ignore-path .gitignore",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"plugin:react/recommended",
"airbnb"
],
"rules": {
"indent": "off",
"react/jsx-props-no-spreading": [
"error",
{
"custom": "ignore"
}
],
"prefer-const": 0
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"cross-env": "^7.0.2",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"react-props-history": "^3.0.7",
"jest": "^24.9.0",
"eslint": "^6.6.0"
}
}