Upload 3 files
Browse files- package.json +32 -0
- postcss.config.js +8 -0
- tailwind.config.js +10 -0
package.json
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"scripts": {
|
3 |
+
"start": "react-scripts start",
|
4 |
+
"build": "react-scripts build",
|
5 |
+
"test": "react-scripts test",
|
6 |
+
"eject": "react-scripts eject"
|
7 |
+
},
|
8 |
+
"dependencies": {
|
9 |
+
"react": "^18.0.0",
|
10 |
+
"react-dom": "^18.0.0",
|
11 |
+
"react-scripts": "^5.0.0",
|
12 |
+
"postcss": "^8",
|
13 |
+
"tailwindcss": "^3.4.1",
|
14 |
+
"autoprefixer": "^10.0.0",
|
15 |
+
"tailwind-merge": "^2.4.0",
|
16 |
+
"tailwindcss-animate": "^1.0.7"
|
17 |
+
},
|
18 |
+
"main": "/index.js",
|
19 |
+
"devDependencies": {},
|
20 |
+
"browserslist": {
|
21 |
+
"production": [
|
22 |
+
">0.2%",
|
23 |
+
"not dead",
|
24 |
+
"not op_mini all"
|
25 |
+
],
|
26 |
+
"development": [
|
27 |
+
"last 1 chrome version",
|
28 |
+
"last 1 firefox version",
|
29 |
+
"last 1 safari version"
|
30 |
+
]
|
31 |
+
}
|
32 |
+
}
|
postcss.config.js
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/** @type {import('postcss-load-config').Config} */
|
2 |
+
const config = {
|
3 |
+
plugins: {
|
4 |
+
tailwindcss: {},
|
5 |
+
},
|
6 |
+
};
|
7 |
+
|
8 |
+
export default config
|
tailwind.config.js
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/** @type {import('tailwindcss').Config} */
|
2 |
+
module.exports = {
|
3 |
+
content: [
|
4 |
+
"./src/**/*.{js,jsx,ts,tsx}",
|
5 |
+
],
|
6 |
+
theme: {
|
7 |
+
extend: {},
|
8 |
+
},
|
9 |
+
plugins: [],
|
10 |
+
}
|