-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.05 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
{
"name": "react-ts-cli",
"version": "1.0.0",
"description": "cli based on React V16 and typescript",
"main": "index.tsx",
"author": "Inigo",
"license": "MIT",
"repository": {
"url": "https://github.com/aWhver/react-ts-cli.git"
},
"scripts": {
"start": "node scripts/start.js",
"build": "node scripts/build.js",
"lint:fix": "eslint src --fix --ext .ts,.tsx",
"lint-staged": "lint-staged"
},
"dependencies": {
"@babel/preset-env": "^7.7.6",
"@babel/preset-react": "^7.7.4",
"@types/react": "^16.9.16",
"@types/react-dnd": "^3.0.2",
"@types/react-dnd-html5-backend": "^3.0.2",
"@types/react-dom": "^16.9.4",
"@types/react-loadable": "^5.5.3",
"@types/react-router": "^5.1.4",
"@types/react-router-dom": "^5.1.3",
"cached-bind": "^1.1.0",
"core-decorators": "^0.20.0",
"html-webpack-plugin": "^3.2.0",
"lodash": "^4.17.15",
"object-sizeof": "^1.6.1",
"qrcode.react": "^1.0.1",
"react": "^16.12.0",
"react-dnd": "^10.0.2",
"react-dnd-html5-backend": "^10.0.2",
"react-dom": "^16.12.0",
"react-loadable": "^5.5.0",
"react-redux": "^7.2.4",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"redux": "^4.1.0",
"rxjs": "^6.5.4",
"typescript": "^3.7.3"
},
"devDependencies": {
"@babel/core": "^7.7.5",
"@typescript-eslint/eslint-plugin": "^2.11.0",
"@typescript-eslint/parser": "^2.11.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"chalk": "^3.0.0",
"css-loader": "^3.3.2",
"eslint": "^6.7.2",
"eslint-config-react-app": "^5.1.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-flowtype": "^4.5.2",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^2.3.0",
"file-loader": "^5.0.2",
"fs-extra": "^8.1.0",
"husky": "^3.1.0",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"lint-staged": "^9.5.0",
"mini-css-extract-plugin": "^0.8.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-flexbugs-fixes": "^4.1.0",
"postcss-loader": "^3.0.0",
"postcss-normalize": "^8.0.1",
"postcss-preset-env": "^6.7.0",
"postcss-safe-parser": "^4.0.1",
"react-dev-utils": "^10.0.0",
"style-loader": "^1.0.1",
"ts-loader": "^6.2.1",
"url-loader": "^3.0.0",
"validate-commit-msg": "^2.14.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0"
},
"peerDependencies": {
"babel-eslint": "10.x",
"eslint": "6.x",
"eslint-plugin-flowtype": "4.x",
"eslint-plugin-import": "2.x",
"eslint-plugin-jsx-a11y": "6.x",
"eslint-plugin-react": "7.x",
"eslint-plugin-react-hooks": "2.x"
},
"browserslist": [
"> 0.3%",
"last 7 versions",
"Android >= 4",
"Firefox >= 20",
"iOS >= 8"
],
"lint-staged": {
"*.{ts,tsx}": [
"yarn lint:fix",
"git add"
]
},
"husky": {
"hooks": {
"commit-msg": "validate-commit-msg",
"pre-commit": "lint-staged"
}
}
}