This repository has been archived by the owner on Jun 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.14 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
{
"name": "airui-admin-template-react",
"version": "1.0.0",
"private": true,
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"lint-staged": "lint-staged",
"prettier": "prettier --write \"src/**/*.{js,jsx,ts,tsx,scss,less}\"",
"eslint": "eslint --ext .js,jsx src",
"stylelint": "stylelint \"src/**/*.{scss,less}\""
},
"husky": {
"hooks": {
"pre-commit": "npm run lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,scss,less}": [
"prettier --write",
"git add"
],
"src/**/*.{js,jsx}": [
"eslint"
],
"src/**/*.{scss,less}": [
"stylelint"
]
},
"dependencies": {
"antd": "^3.19.6",
"availity-reactstrap-validation": "^2.6.0",
"axios": "^0.21.1",
"bootstrap-css-only": "^4.3.1",
"chart.js": "^2.8.0",
"chartist": "^0.11.2",
"chartist-plugin-tooltips-updated": "^0.0.21",
"classnames": "^2.2.6",
"connected-react-router": "^6.4.0",
"firebase": "^6.2.0",
"highcharts": "^9.0.0",
"highcharts-react-official": "^2.2.2",
"history": "^4.9.0",
"lodash": "^4.17.11",
"moment-timezone": "^0.5.27",
"nprogress": "^0.2.0",
"qs": "^6.7.0",
"react": "^16.8.6",
"react-c3js": "^0.1.20",
"react-chartist": "^0.13.3",
"react-chartjs-2": "^2.7.6",
"react-custom-scrollbars": "^4.2.1",
"react-dom": "^16.8.6",
"react-draft-wysiwyg": "^1.13.2",
"react-ga": "^2.7.0",
"react-helmet": "^5.2.1",
"react-highlight-words": "^0.16.0",
"react-jvectormap": "^0.0.12",
"react-loadable": "^5.5.0",
"react-redux": "^7.1.0",
"react-resizable": "^1.8.0",
"react-router-dom": "^5.0.1",
"react-router-transition-switch": "1.1.1",
"react-scripts": "3.0.1",
"react-select": "^3.0.8",
"react-sortable-tree": "^2.6.2",
"react-sortablejs": "^1.5.1",
"react-transition-group": "^4.2.1",
"reactstrap": "^8.0.0",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-saga": "^1.0.3",
"sortablejs": "1.6.1",
"store": "^2.0.12"
},
"homepage": "https://ffc.in.th/dashboard",
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.4.4",
"babel-plugin-import": "^1.12.0",
"customize-cra": "^0.2.13",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^5.0.0",
"gh-pages": "^2.1.1",
"husky": "^2.4.1",
"less": "^3.9.0",
"less-loader": "^5.0.0",
"lint-staged": "^8.2.1",
"node-sass": "^4.12.0",
"prettier": "^1.18.2",
"react-app-rewired": "^2.1.3",
"stylelint": "^10.1.0",
"stylelint-config-prettier": "^5.2.0",
"stylelint-config-standard": "^18.3.0"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}