-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.93 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.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
{
"name": "react-typescript-webpack-starter",
"version": "1.0.0",
"description": "A starter template for React with Typescript using Webpack 5",
"scripts": {
"start": "webpack serve --config webpack/webpack.config.js --env env=dev",
"build": "webpack --config webpack/webpack.config.js --env env=prod",
"lint": "eslint --fix \"./src/**/*.{js,jsx,ts,tsx,json}\"",
"test": "vitest",
"test:coverage": "vitest --coverage",
"netlify init": "netlify init",
"netlify help": "netlify help",
"netlify deploy": "netlify deploy"
},
"keywords": [
"React",
"TypeScript",
"Webpack 5",
"Starter Template",
"Boilerplate"
],
"author": "Vishwas",
"license": "MIT",
"dependencies": {
"netlify-cli": "^10.6.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"react-router-dom": "^6.3.0",
"react-spinners": "^0.12.0",
"react-syntax-highlighter": "^15.5.0"
},
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.12.16",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.12.16",
"@babel/runtime": "^7.13.10",
"@pmmmwh/react-refresh-webpack-plugin": "^0.4.3",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^12.1.5",
"@testing-library/react-hooks": "^8.0.0",
"@testing-library/user-event": "^13.5.0",
"@types/enzyme": "^3.10.12",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@types/react-syntax-highlighter": "^15.5.1",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"@vitejs/plugin-react": "^1.3.2",
"@vitest/ui": "latest",
"babel-loader": "^8.2.2",
"c8": "^7.11.3",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.0.2",
"enzyme": "^3.11.0",
"enzyme-to-json": "^3.6.2",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"html-webpack-plugin": "^5.1.0",
"husky": "4",
"jsdom": "latest",
"lint-staged": "^10.5.4",
"react-refresh": "^0.9.0",
"sass": "^1.52.1",
"sass-loader": "^13.0.0",
"style-loader": "^2.0.0",
"typescript": "^4.1.5",
"vite": "^2.9.9",
"vitest": "latest",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^3.11.3",
"webpack-merge": "^5.7.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json}": [
"eslint --fix"
]
}
}