-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
128 lines (128 loc) · 4.13 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
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "admin-template-for-react",
"title": "Admin Template for React",
"version": "1.0.0",
"description": "Admin template for react",
"main": "src/index.tsx",
"scripts": {
"start": "webpack-dev-server --open --config webpack.config.dev.js",
"build": "webpack --config webpack.config.prod.js",
"deploy-build": "webpack --config webpack.config.prod.js --env.baseHref=/admin-template-for-react/",
"format": "prettier --write ./src/**",
"lint": "eslint ./src/**/*.{ts,tsx} || stylelint ./src/**/*.{scss,css}",
"precommit": "lint-staged",
"pull:i18n": "git subtree pull --prefix=assets/locales https://github.com/bndynet/i18n.git master --squash",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bndynet/admin-template-for-react.git"
},
"keywords": [
"admin template",
"material design",
"react",
"react redux"
],
"author": "Bendy Zhang",
"license": "MIT",
"bugs": {
"url": "https://github.com/bndynet/admin-template-for-react/issues"
},
"homepage": "https://github.com/bndynet/admin-template-for-react#readme",
"dependencies": {
"@bndynet/dialog": "^2.8.1",
"@bndynet/dialog-themes": "^1.0.0",
"@bndynet/recharts-wrapper": "^1.2.1",
"@material-ui/core": "^4.4.3",
"@material-ui/icons": "^3.0.1",
"axios": "^0.18.1",
"classnames": "^2.2.6",
"connected-react-router": "^5.0.1",
"github-markdown-css": "^2.10.0",
"lodash-es": "^4.17.14",
"mui-datatables": "^2.3.0",
"query-string": "^6.4.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-intl-universal": "^1.16.2",
"react-markdown": "^4.0.3",
"react-redux": "^5.1.1",
"react-router-config": "^5.0.0",
"react-router-dom": "^5.0.1",
"recharts": "^1.5.0",
"redux": "^4.0.1",
"redux-saga": "^0.16.2"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.12.1",
"@bndynet/header-injection-webpack-plugin": "^4.0.1",
"@pmmmwh/react-refresh-webpack-plugin": "^0.4.2",
"@types/classnames": "^2.2.6",
"@types/lodash-es": "^4.17.3",
"@types/react": "^16.8.17",
"@types/react-dom": "^16.8.3",
"@types/react-redux": "^6.0.14",
"@types/react-router-config": "^5.0.1",
"@types/react-router-dom": "^4.3.1",
"@types/recharts": "file:local-types/recharts",
"@types/redux-logger": "^3.0.7",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"autoprefixer": "^9.5.0",
"babel-loader": "^8.0.4",
"base-href-webpack-plugin": "^2.0.0",
"clean-webpack-plugin": "^1.0.1",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^1.0.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-config-react": "^1.1.7",
"eslint-loader": "^2.1.2",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.12.4",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.13.1",
"postcss-loader": "^3.0.0",
"prettier": "^1.17.1",
"print-time-webpack": "^2.0.3",
"react-refresh": "^0.9.0",
"redux-devtools-extension": "^2.13.8",
"redux-logger": "^3.0.6",
"sass-loader": "^7.0.1",
"source-map-loader": "^0.2.4",
"style-loader": "^0.23.1",
"stylelint": "^9.10.1",
"stylelint-config-prettier": "^5.2.0",
"stylelint-config-recommended": "^2.1.0",
"stylelint-scss": "^3.5.4",
"typescript": "^3.4.1",
"url-loader": "^1.0.1",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.2.1",
"webpack-merge": "^4.1.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"git add"
],
"*.scss": "stylelint --syntax=scss"
}
}