-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 3.44 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": "react-typescript-blog",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack serve --config build/webpack.dev.js --mode development --hot",
"build": "webpack --config build/webpack.prod.js --mode production --env test",
"commit": "git-cz",
"lint": "eslint \"src/**\" --max-warnings 0",
"lint:f": "eslint \"src/**\" --fix",
"prettier": "prettier src test --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nitrohe/o-react-typescript-blog.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/nitrohe/o-react-typescript-blog/issues"
},
"homepage": "https://github.com/nitrohe/o-react-typescript-blog#readme",
"dependencies": {
"@babel/runtime-corejs3": "^7.12.5",
"antd": "^4.8.4",
"axios": "^0.21.0",
"core-js": "^3.7.0",
"history": "^5.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.1.2"
},
"devDependencies": {
"@ant-design/icons": "^4.4.0",
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "7.12.1",
"@babel/plugin-proposal-decorators": "7.12.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "7.12.5",
"@babel/preset-typescript": "^7.12.1",
"@babel/runtime": "^7.12.5",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@loadable/component": "^5.14.1",
"@types/loadable__component": "^5.13.1",
"@types/react": "^16.9.56",
"@types/react-dom": "^16.9.9",
"@types/react-router-dom": "^5.1.2",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"add-asset-html-webpack-plugin": "^3.1.3",
"autoprefixer": "^10.0.2",
"babel-loader": "^8.2.1",
"babel-plugin-import": "^1.13.1",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.0.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.0.0-alpha.14",
"husky": "^4.3.0",
"less": "^3.12.2",
"less-loader": "^7.1.0",
"lint-staged": "^10.5.1",
"mini-css-extract-plugin": "^1.3.1",
"node-sass": "^5.0.0",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"postcss": "^8.1.8",
"postcss-loader": "^4.1.0",
"prettier": "^2.2.0",
"sass-loader": "^10.1.0",
"script-ext-html-webpack-plugin": "^2.1.5",
"style-loader": "^2.0.0",
"typescript": "^4.1.2",
"url-loader": "^4.1.1",
"webpack": "^5.6.0",
"webpack-bundle-analyzer": "^4.1.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.4.0",
"workbox-webpack-plugin": "^5.1.4",
"yargs-parser": "^20.2.4"
},
"browserslist": [
"> 1%",
"last 10 versions"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{.ts,.tsx,.js,.jsx}": [
"npm run lint",
"npm run prettier"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}