-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·114 lines (114 loc) · 3.53 KB
/
package.json
File metadata and controls
executable file
·114 lines (114 loc) · 3.53 KB
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": "name",
"version": "1.0.3",
"description": "{{ description }}",
"author": "{{ author }}",
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server",
"build": "cross-env NODE_ENV=production webpack",
"lint": "eslint ./ --ext .js,.tsx,.ts",
"lint:fix": "yarn lint --fix"
},
"license": "MIT",
"dependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-hooks-lib": "^0.0.19",
"react-redux": "^7.1.0",
"react-router-dom": "^5.0.1",
"redux": "^4.0.1",
"redux-actions": "^2.6.5",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@hot-loader/react-dom": "^16.9.0",
"@types/react": "^16.8.20",
"@types/react-dom": "^16.8.5",
"@types/react-redux": "^7.1.0",
"@types/react-router-dom": "^4.3.4",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-plugin-import": "^1.12.0",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-module-resolver": "^3.2.0",
"babel-polyfill": "^6.26.0",
"babel-register": "^6.26.0",
"cache-loader": "^4.1.0",
"clean-webpack-plugin": "^3.0.0",
"commitlint": "^8.1.0",
"copy-webpack-plugin": "^5.0.4",
"cross-env": "^5.2.0",
"css-loader": "^3.0.0",
"eslint": "^6.2.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-typescript": "^4.0.1",
"eslint-import-resolver-webpack": "^0.11.1",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jest": "^22.15.1",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-react-hooks": "^1.6.0",
"eslint-plugin-typescript": "^0.14.0",
"file-loader": "^4.2.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"happypack": "^5.0.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^2.4.1",
"imagemin": "^7.0.0",
"imagemin-gifsicle": "^6.0.1",
"imagemin-mozjpeg": "^8.0.0",
"imagemin-pngquant": "^8.0.0",
"imagemin-svgo": "^7.0.0",
"img-loader": "^3.0.1",
"isomorphic-fetch": "^2.2.1",
"jest": "^24.8.0",
"less": "^3.9.0",
"less-loader": "^5.0.0",
"less-vars-to-js": "^1.3.0",
"mini-css-extract-plugin": "0.7.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"os": "^0.1.1",
"postcss-easy-import": "^3.0.0",
"postcss-loader": "^3.0.0",
"pre-commit": "^1.2.2",
"raw-loader": "^3.0.0",
"react-hot-loader": "^4.12.11",
"react-scripts": "^3.1.1",
"react-test-renderer": "^16.9.0",
"redux-devtools-extension": "^2.13.8",
"snazzy": "^8.0.0",
"speed-measure-webpack-plugin": "^1.3.1",
"standard": "^14.0.0-0",
"style-loader": "^0.23.1",
"transform": "^1.1.2",
"ts-loader": "^6.0.4",
"url-loader": "^2.0.0",
"webpack": "^4.34.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.4",
"webpack-common-shake": "^2.1.0",
"webpack-dev-server": "^3.7.1",
"webpack-merge": "^4.2.2"
},
"pre-commit": [
"lint"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -e .git/COMMIT_EDITMSG",
"pre-commit": "standard \"pages/**/*.{js}\" | snazzy"
}
}
}