-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
69 lines (69 loc) · 2.15 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
{
"name": "react-typescript-boilerplate",
"version": "2.2.0",
"main": "index.js",
"author": "Turbo<me@turbothinh.com>",
"license": "MIT",
"description": "An up-to-date simple yet powerful and super flexible React app with Webpack 5, Typescript 4",
"scripts": {
"lint": "eslint . --ext .js,.ts,.tsx --cache",
"lint:fix": "yarn lint --fix",
"build": "webpack --mode production --config webpack/prod.config.js",
"build:start": "npx serve dist",
"start": "webpack serve --mode development --config webpack/dev.config.js --open --hot"
},
"dependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-loadable": "^5.5.0"
},
"devDependencies": {
"@types/node": "^14.14.19",
"@types/node-sass": "^4.11.1",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/webpack-env": "^1.16.0",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"clean-webpack-plugin": "^3.0.0",
"compression-webpack-plugin": "^7.1.1",
"copy-webpack-plugin": "^7.0.0",
"css-loader": "^5.0.1",
"eslint": "^7.16.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-import-resolver-webpack": "^0.13.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.0.0-beta.1",
"husky": "^4.3.6",
"image-webpack-loader": "^7.0.1",
"imagemin-mozjpeg": "^9.0.0",
"imagemin-webpack-plugin": "^2.4.2",
"mini-css-extract-plugin": "^1.3.3",
"node-sass": "^5.0.0",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"react-helmet": "^6.1.0",
"react-lazyload": "^3.1.0",
"react-router-dom": "^5.2.0",
"sass-loader": "^10.1.0",
"source-map-loader": "^2.0.0",
"svg-url-loader": "^7.1.1",
"ts-loader": "^8.0.13",
"typescript": "^4.1.3",
"url-loader": "^4.1.1",
"webpack": "^5.11.1",
"webpack-bundle-analyzer": "^4.3.0",
"webpack-cli": "^4.3.1",
"webpack-dev-server": "^3.11.1",
"webpack-merge": "^5.7.3"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint:fix"
}
},
"engines": {
"node": ">=10.0.0"
}
}