-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 3.75 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
{
"name": "dva-typescript-antd-mobile-starter-kit",
"description": "a practice project",
"private": true,
"scripts": {
"dev": "webpack-dev-server --mode development",
"mockjson": "node_modules/.bin/json-server --watch mock/db.json --routes mock/routes.json --port 9090",
"mockjs": "node_modules/.bin/json-server --watch mock/db.js --routes mock/routes.json --port 9090",
"build": "webpack --mode production",
"eslint:fix": "eslint --fix \"src/**/*.{ts,tsx}\" ",
"stylelint": "stylelint --syntax less \"src/**/*.less\" ",
"prettier": "prettier --write \"src/**/*.{ts,tsx,js,jsx,less,css,json}\" ",
"precommit": "lint-staged",
"cnpm": "cnpm i"
},
"engines": {
"install-node": "10.13"
},
"dependencies": {
"antd-mobile": "^2.2.14",
"axios": "^0.19.0",
"classnames": "^2.2.6",
"dva": "^2.4.1",
"dva-loading": "^3.0.12",
"history": "^4.9.0",
"lodash": "^4.17.14",
"mockjs": "^1.0.1-beta3",
"moment": "^2.24.0",
"query-string": "^6.8.1",
"rc-form": "^2.4.8",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-hot-loader": "^4.12.6",
"styled-components": "^4.3.2"
},
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/plugin-proposal-class-properties": "^7.5.0",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.5.0",
"@babel/preset-env": "^7.5.4",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@babel/runtime": "^7.5.4",
"@types/classnames": "^2.2.9",
"@types/lodash": "^4.14.136",
"@types/react": "^16.8.23",
"@types/react-dom": "^16.8.4",
"@types/webpack": "^4.4.35",
"@types/webpack-env": "^1.14.0",
"@typescript-eslint/eslint-plugin": "^1.12.0",
"@typescript-eslint/parser": "^1.12.0",
"autoprefixer": "^9.6.1",
"babel-loader": "^8.0.6",
"babel-plugin-import": "^1.12.0",
"browser-sync": "^2.26.7",
"browser-sync-webpack-plugin": "^2.2.2",
"clean-webpack-plugin": "^3.0.0",
"compression-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.3",
"css-loader": "^3.0.0",
"cssnano": "^4.1.10",
"cssnano-preset-advanced": "^4.0.7",
"eslint": "^6.0.1",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^6.0.0",
"eslint-import-resolver-webpack": "^0.11.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.2",
"expect": "^24.8.0",
"file-loader": "^4.0.0",
"happypack": "^5.0.1",
"hard-source-webpack-plugin": "^0.13.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.0.0",
"image-webpack-loader": "^5.0.0",
"json-server": "^0.15.0",
"less": "^3.9.0",
"less-loader": "^5.0.0",
"less-vars-to-js": "^1.3.0",
"lint-staged": "^9.2.0",
"mini-css-extract-plugin": "^0.7.0",
"node-sass": "^4.12.0",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"prettier": "^1.18.2",
"sass-loader": "^7.1.0",
"source-map-loader": "^0.2.4",
"style-loader": "^0.23.1",
"stylelint": "^10.1.0",
"stylelint-config-prettier": "^5.2.0",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^18.3.0",
"stylelint-declaration-block-no-ignored-properties": "^2.1.0",
"stylelint-order": "^3.0.1",
"svg-sprite-loader": "^4.1.6",
"terser-webpack-plugin": "^1.3.0",
"typescript": "^3.5.3",
"url-loader": "^2.0.1",
"webpack": "^4.35.3",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2",
"webpack-merge": "^4.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}