-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3.04 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 3.04 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
{
"name": "react-ts-tailwind-starter",
"version": "1.0.0",
"description": "React 19, TypeScript, Tailwind CSS, and Webpack 6 starter template.",
"keywords": [
"react 19",
"typescript",
"tailwindcss",
"webpack 6",
"starter"
],
"license": "MIT",
"type": "module",
"author": {
"name": "Ignacio Villamar",
"email": "iggy@ivstudio.com",
"url": "https://github.com/ivstudio"
},
"homepage": "https://ivstudio.github.io/react-typescript-tailwindcss-webpack5-starter",
"scripts": {
"start": "webpack serve --config webpack/webpack.dev.ts",
"test": "jest",
"analyze": "ANALYZE=true npm run build",
"build": "NODE_OPTIONS='--loader ts-node/esm' npx webpack --config webpack/webpack.prod.ts",
"coverage": "jest --coverage",
"format": "prettier --write src",
"lint": "eslint ./src",
"lint:debug": "eslint ./src --debug",
"lint:fix": "eslint ./src --fix",
"prepare": "husky"
},
"dependencies": {
"react": "^19.0.0",
"react-dom": "^19.2.0"
},
"devDependencies": {
"@babel/core": "^7.28.6",
"@babel/plugin-transform-runtime": "^7.28.5",
"@babel/preset-env": "^7.28.6",
"@babel/preset-react": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@eslint/js": "^9.39.1",
"@tailwindcss/postcss": "^4.1.18",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/eslint-config-prettier": "^6.11.3",
"@types/jest": "^30.0.0",
"@types/node": "^25.0.10",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.2.3",
"@types/webpack-bundle-analyzer": "^4.7.0",
"babel-loader": "^10.0.0",
"clean-webpack-plugin": "^4.0.0",
"compression-webpack-plugin": "^11.1.0",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-simple-import-sort": "^12.1.1",
"file-loader": "^6.2.0",
"globals": "^16.5.0",
"html-webpack-plugin": "^5.6.6",
"husky": "^9.1.7",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"mini-css-extract-plugin": "^2.9.4",
"postcss": "^8.5.6",
"postcss-loader": "^8.2.0",
"prettier": "^3.8.0",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^4.1.18",
"ts-loader": "^9.5.4",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"webpack": "^5.102.1",
"webpack-bundle-analyzer": "^5.1.0",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2",
"webpack-merge": "^6.0.1"
},
"engines": {
"node": ">=22.0.0"
}
}