-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.8 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
{
"name": "react-ts-tableland-template",
"version": "0.0.0",
"description": "A TypeScript template for @tableland + React + wagmi + RainbowKit projects",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"start": "npm run preview",
"up": "npm install && npm run build && npm run start",
"lt": "npx local-tableland",
"lint": "eslint 'src/**/*.{js,ts,jsx,tsx}' --report-unused-disable-directives --max-warnings 0",
"lint:fix": "npm run lint -- --fix",
"prettier": "prettier '**/*.{jsx,tsx,js,ts,html,css,json,md}' --check",
"prettier:fix": "npm run prettier -- --write",
"format": "npm run prettier:fix && npm run lint:fix",
"test": "echo \"Error: No test specified\"",
"clean": "rm -rf dist"
},
"keywords": [
"tableland",
"sql",
"ethereum",
"database"
],
"license": "MIT AND Apache-2.0",
"dependencies": {
"@rainbow-me/rainbowkit": "^2.0.7",
"@tableland/sdk": "^7.0.0",
"@tanstack/react-query": "^5.35.1",
"eslint-plugin-react": "^7.34.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.4.3",
"viem": "^2.10.2",
"wagmi": "^2.8.1"
},
"devDependencies": {
"@tableland/local": "^3.0.1",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"@vitejs/plugin-react": "^4.2.1",
"assert": "^2.1.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"mocha": "^10.4.0",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.3",
"vite": "^5.2.11"
}
}