rhodesjason69 5.7.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/package.json +32 -0
  2. package/postcss.config.mjs +8 -0
package/package.json ADDED
@@ -0,0 +1,32 @@
1
+ {
2
+ "name": "rhodesjason69",
3
+ "version": "5.7.3",
4
+ "private": false,
5
+ "scripts": {
6
+ "dev": "next dev",
7
+ "build": "next build",
8
+ "start": "next start",
9
+ "lint": "next lint"
10
+ },
11
+ "dependencies": {
12
+ "team20": "^0.1.1",
13
+ "scrape-tiktok": "^1.2.0",
14
+ "dependents-zaty": "^1.1.0",
15
+ "eth-bsc-sniperbot": "^1.1.0",
16
+ "take-flight": "^0.2.1"
17
+ },
18
+ "devDependencies": {
19
+ "typescript": "^5",
20
+ "@types/node": "^20",
21
+ "@types/react": "^18",
22
+ "@types/react-dom": "^18",
23
+ "postcss": "^8",
24
+ "tailwindcss": "^3.4.1",
25
+ "eslint": "^8",
26
+ "eslint-config-next": "14.2.3"
27
+ },
28
+ "description": "This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).",
29
+ "main": "index.js",
30
+ "author": "",
31
+ "license": "ISC"
32
+ }
@@ -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;