|
| 1 | +{ |
| 2 | + "name": "react-typescript-tailwind-template", |
| 3 | + "description": "Web app react template with typescript and tailwindcss.", |
| 4 | + "keywords": [ |
| 5 | + "react", |
| 6 | + "typescript", |
| 7 | + "tailwindcss" |
| 8 | + ], |
| 9 | + "version": "1.0.0", |
| 10 | + "main": "src/index.ts", |
| 11 | + "author": "Botond Veress <[email protected]>", |
| 12 | + "license": "MIT", |
| 13 | + "scripts": { |
| 14 | + "dev": "webpack serve", |
| 15 | + "lint": "eslint --max-warnings 0 --ext .tsx --ext .ts src/", |
| 16 | + "typecheck": "tsc --noEmit", |
| 17 | + "build": "webpack --mode=production", |
| 18 | + "analyze": "webpack --mode=production --profile --json > stats.json && webpack-bundle-analyzer --mode static stats.json dist" |
| 19 | + }, |
| 20 | + "dependencies": { |
| 21 | + "react": "^17.0.2", |
| 22 | + "react-dom": "^17.0.2", |
| 23 | + "tailwindcss": "^2.2.16", |
| 24 | + "typescript": "^4.4.3" |
| 25 | + }, |
| 26 | + "devDependencies": { |
| 27 | + "@babel/core": "^7.15.8", |
| 28 | + "@babel/preset-env": "^7.15.8", |
| 29 | + "@babel/preset-react": "^7.14.5", |
| 30 | + "@babel/preset-typescript": "^7.15.0", |
| 31 | + "@babel/register": "^7.15.3", |
| 32 | + "@pmmmwh/react-refresh-webpack-plugin": "^0.5.1", |
| 33 | + "@types/css-minimizer-webpack-plugin": "^3.0.2", |
| 34 | + "@types/mini-css-extract-plugin": "^2.3.0", |
| 35 | + "@types/react": "^17.0.27", |
| 36 | + "@types/react-dom": "^17.0.9", |
| 37 | + "@types/webpack-dev-server": "^4.3.1", |
| 38 | + "@typescript-eslint/eslint-plugin": "^4.33.0", |
| 39 | + "@typescript-eslint/parser": "^4.33.0", |
| 40 | + "autoprefixer": "^10.3.7", |
| 41 | + "babel-loader": "^8.2.2", |
| 42 | + "css-loader": "^6.4.0", |
| 43 | + "css-minimizer-webpack-plugin": "^3.1.1", |
| 44 | + "eslint": "^7.32.0", |
| 45 | + "eslint-config-prettier": "^8.3.0", |
| 46 | + "eslint-plugin-react": "^7.26.1", |
| 47 | + "eslint-plugin-react-hooks": "^4.2.0", |
| 48 | + "html-webpack-plugin": "^5.3.2", |
| 49 | + "mini-css-extract-plugin": "^2.4.2", |
| 50 | + "postcss": "^8.3.9", |
| 51 | + "postcss-loader": "^6.1.1", |
| 52 | + "prettier": "^2.4.1", |
| 53 | + "react-refresh": "^0.10.0", |
| 54 | + "style-loader": "^3.3.0", |
| 55 | + "type-fest": "^2.3.4", |
| 56 | + "webpack": "^5.58.1", |
| 57 | + "webpack-bundle-analyzer": "^4.4.2", |
| 58 | + "webpack-cli": "^4.9.0", |
| 59 | + "webpack-dev-server": "^4.3.1" |
| 60 | + } |
| 61 | +} |
0 commit comments