-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
105 lines (105 loc) · 2.81 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
{
"name": "clean-ui-admin-template-cra",
"version": "2.1.1",
"private": true,
"scripts": {
"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",
"tslint": "tslint \"src/**/*.{ts,tsx}\"",
"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": {
"@rowno/sparkline": "^3.0.1",
"antd": "^3.13.2",
"bootstrap-css-only": "^4.2.1",
"chart.js": "^2.7.3",
"chartist": "^0.11.0",
"chartist-plugin-tooltips-updated": "^0.0.20",
"classnames": "^2.2.6",
"connected-react-router": "^6.3.1",
"d3-dsv": "^1.1.1",
"d3-format": "^1.3.2",
"d3-time-format": "^2.1.3",
"dotenv": "^6.2.0",
"enquire-js": "^0.2.1",
"firebase": "^5.8.2",
"google-maps-react": "^2.0.2",
"history": "^4.7.2",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"nprogress": "^0.2.0",
"peity-react": "^0.0.7",
"prop-types": "^15.7.1",
"qs": "^6.6.0",
"rc-drawer": "^1.7.7",
"react": "^16.8.1",
"react-c3js": "^0.1.20",
"react-chartist": "^0.13.3",
"react-chartjs-2": "^2.7.4",
"react-custom-scrollbars": "^4.2.1",
"react-data-export": "^0.5.0",
"react-dom": "^16.8.1",
"react-draft-wysiwyg": "^1.13.1",
"react-google-maps": "^9.4.5",
"react-helmet": "^5.2.0",
"react-intl": "^2.8.0",
"react-loadable": "^5.5.0",
"react-redux": "^6.0.0",
"react-redux-spinner": "^2.0.0",
"react-router": "^4.3",
"react-router-dom": "^4.3.1",
"react-router-redux": "^4.0.8",
"react-scripts": "2.1.5",
"react-stockcharts": "^0.7.8",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-saga": "^1.0.1",
"redux-thunk": "^2.3.0",
"store": "^2.0.12",
"xlsx": "^0.14.1",
"xlsx-style": "^0.8.13"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.3.0",
"babel-plugin-import": "^1.11.0",
"customize-cra": "^0.2.11",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.0.0",
"husky": "^1.3.1",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"lint-staged": "^8.1.3",
"node-sass": "^4.11.0",
"react-app-rewired": "^2.1.0",
"stylelint": "^9.10.1",
"stylelint-config-prettier": "^4.0.0",
"stylelint-config-standard": "^18.2.0"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}