-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.49 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
{
"name": "react-minimal-ts-boilerplate",
"version": "1.0.0",
"description": "Minimal boilerplate for starting react project with typescript",
"main": "dist/index.js",
"scripts": {
"start": "NODE_ENV=development webpack-dev-server --open --mode development --content-base dist/ --history-api-fallback --hotOnly --colors",
"build": "NODE_ENV=production webpack",
"format": "prettier --write --use-tabs 'src/**/*.(ts|tsx)'",
"test": "jest"
},
"author": "Lakhan Samani <lakhan.m.samani@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.10.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@pmmmwh/react-refresh-webpack-plugin": "^0.4.2",
"@svgr/webpack": "^5.4.0",
"@testing-library/dom": "^7.21.4",
"@testing-library/jest-dom": "^5.11.1",
"@testing-library/react": "^10.4.7",
"@types/jest": "^26.0.7",
"@types/react-router-dom": "^5.1.6",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"compression-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^6.0.3",
"css-loader": "^3.6.0",
"dotenv-webpack": "^2.0.0",
"eslint": "^7.5.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.18.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.3",
"file-loader": "^6.0.0",
"html-webpack-harddisk-plugin": "^1.0.2",
"html-webpack-plugin": "^4.3.0",
"jest": "^26.1.0",
"mini-css-extract-plugin": "^0.9.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"prettier": "^2.0.5",
"react-refresh": "^0.8.3",
"style-loader": "^1.2.1",
"terser-webpack-plugin": "^3.0.7",
"ts-jest": "^26.1.3",
"tslint": "^6.1.2",
"tslint-immutable": "^6.0.1",
"type-fest": "^0.16.0",
"typescript": "~3.7.2",
"url-loader": "^4.1.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"write-file-webpack-plugin": "^4.5.0"
},
"dependencies": {
"@types/react": "^17.0.1",
"@types/react-dom": "^17.0.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0"
}
}