-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.93 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.93 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": "ReactRouter-tutorial-code",
"version": "1.0.0",
"private": false,
"scripts": {
"start": "npm install && npm run start:dev",
"start:dev": "webpack-dev-server --config webpack.dev.js --inline",
"build": "node scripts/clean && webpack -p --config webpack.prod.js",
"test": "echo \"Error: no test specified\" && exit 1",
"eject": "react-scripts eject",
"deploy": "gh-pages -d public"
},
"homepage": "http://insoo-Jang.github.io/ReactRouter-tutorial-code",
"dependencies": {
"@ant-design/icons": "^4.0.3",
"animejs": "^3.0.0",
"antd": "4.0.3",
"echarts": "^4.7.0",
"i18next": "^19.3.3",
"i18next-browser-languagedetector": "^2.2.3",
"lodash": "^4.17.10",
"prop-types": "^15.6.2",
"react": "^16.13.1",
"react-custom-scrollbars": "^4.2.1",
"react-dom": "^16.13.1",
"react-dom-factories": "^1.0.2",
"react-helmet": "^5.2.0",
"react-hot-loader": "^4.12.12",
"react-json-view": "^1.19.1",
"react-redux": "^7.2.0",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"redux": "^4.0.5",
"redux-actions": "^2.6.5",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0",
"resize-observer-polyfill": "^1.5.1",
"store": "^2.0.12",
"uuid": "^3.3.3",
"warning": "^4.0.3"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-decorators": "^7.2.3",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-async-to-generator": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.1.0",
"@types/react-dom": "^16.9.5",
"@types/react-redux": "^7.1.7",
"antd-theme-webpack-plugin": "^1.3.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-plugin-dynamic-import-webpack": "^1.1.0",
"babel-plugin-import": "^1.11.0",
"child_process": "^1.0.2",
"clean-webpack-plugin": "^0.1.19",
"core-js": "^3.6.4",
"css-loader": "^2.1.0",
"del": "^5.1.0",
"dotenv": "^8.2.0",
"eslint": "^5.12.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^6.10.0",
"eslint-config-react": "^1.1.7",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.12.3",
"eslint-plugin-react-hooks": "^2.5.1",
"file-loader": "^3.0.1",
"fs-extra": "^9.0.0",
"gh-pages": "^3.1.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^4.2.3",
"less": "^2.7.3",
"less-loader": "^4.1.0",
"less-vars-to-js": "^1.3.0",
"path": "^0.12.7",
"prettier": "1.19.1",
"pretty-quick": "^2.0.1",
"serve": "^11.2.0",
"style-loader": "^0.23.1",
"terser-webpack-plugin": "^1.2.3",
"tslint": "^5.12.1",
"tslint-react": "^3.6.0",
"typedoc": "^0.15.4",
"url-loader": "^1.1.2",
"webpack": "^4.28.4",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14",
"webpack-merge": "^4.2.1",
"workbox-webpack-plugin": "^3.6.3"
},
"prettier": {
"trailingComma": "all",
"tabWidth": 4,
"semi": false,
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}