-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.46 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.46 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
{
"name": "react-typescript-webpack-starter",
"version": "1.0.0",
"description": "A personal blog built with React and TypeScript",
"engines": {
"node": ">=18.0.0"
},
"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}\"",
"test": "vitest",
"test:coverage": "vitest --coverage",
"type-check": "tsc --noEmit",
"prepare": "husky"
},
"keywords": [
"React",
"TypeScript",
"Webpack 5"
],
"author": "Vishwas",
"license": "MIT",
"dependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^6.28.0",
"react-syntax-highlighter": "^15.6.1"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-transform-runtime": "^7.25.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.0",
"@babel/preset-typescript": "^7.26.0",
"@babel/runtime": "^7.26.0",
"@eslint/js": "^9.16.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
"@testing-library/dom": "^10.0.0",
"@testing-library/jest-dom": "^6.6.0",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/react-syntax-highlighter": "^15.5.13",
"@vitejs/plugin-react": "^4.3.0",
"@vitest/coverage-v8": "^3.0.0",
"@vitest/ui": "^3.0.0",
"babel-loader": "^9.2.0",
"css-loader": "^7.1.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-react": "^7.37.0",
"eslint-plugin-react-hooks": "^5.1.0",
"globals": "^15.0.0",
"html-webpack-plugin": "^5.6.0",
"husky": "^9.1.0",
"jsdom": "^25.0.0",
"lint-staged": "^15.2.0",
"netlify-cli": "^17.0.0",
"react-refresh": "^0.14.2",
"sass": "^1.82.0",
"sass-loader": "^16.0.0",
"style-loader": "^4.0.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.16.0",
"vite": "^6.0.0",
"vitest": "^3.0.0",
"webpack": "^5.97.0",
"webpack-cli": "^5.1.0",
"webpack-dev-server": "^5.2.0",
"webpack-merge": "^6.0.0"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
}
}