-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.85 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
{
"name": "react_tailwind_setup",
"version": "0.0.1",
"description": "basic react setup using webpack, TailwindCSS, babel, PostCSS, SVGR, eslint and prettier",
"main": "src/index.jsx",
"repository": {
"type": "git",
"url": "git+https://github.com/jaykanjia/react_tailwind_setup.git"
},
"bugs": {
"url": "https://github.com/jaykanjia/react_tailwind_setup/issues"
},
"homepage": "https://github.com/jaykanjia/react_tailwind_setup#readme",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack serve --mode=development",
"build": "webpack",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier . --check",
"prettier:fix": "prettier . --write"
},
"keywords": [
"react",
"react_setup",
"babel",
"TailwindCSS",
"postcss",
"svgr",
"eslint",
"prettier",
"setup"
],
"author": "jay kanjia",
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/eslint-parser": "^7.22.15",
"@babel/preset-env": "^7.23.2",
"@babel/preset-react": "^7.22.15",
"@svgr/webpack": "^8.1.0",
"autoprefixer": "^10.4.16",
"babel-loader": "^9.1.3",
"css-loader": "^6.8.1",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"html-webpack-plugin": "^5.5.3",
"postcss": "^8.4.31",
"postcss-import": "^15.1.0",
"postcss-loader": "^7.3.3",
"postcss-preset-env": "^9.3.0",
"prettier": "^3.0.3",
"style-loader": "^3.3.3",
"tailwindcss": "^3.3.5",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"license": "MIT"
}