-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.39 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
{
"name": "next-js-tableland-template",
"version": "0.0.0",
"description": "A JavaScript template for @tableland + NextJS + wagmi + RainbowKit projects",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"up": "npm install && npm run build && npm run start",
"lt": "npx local-tableland",
"lint": "next lint",
"lint:fix": "npm run lint -- --fix",
"prettier": "prettier '**/*.{jsx,js,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 .next"
},
"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",
"autoprefixer": "^10.4.19",
"mocha": "^10.4.0",
"next": "^14.1.4",
"postcss": "^8.4.38",
"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",
"encoding": "^0.1.13",
"eslint": "^8.57.0",
"eslint-config-next": "^14.1.4",
"eslint-config-prettier": "^9.1.0",
"lokijs": "^1.5.12",
"pino-pretty": "^11.0.0",
"prettier": "^3.2.5"
}
}