-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.89 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.89 KB
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
68
{
"name": "sarafu-visualizer",
"description": "Sarafu Network Visualizer",
"version": "0.0.0-dripip",
"author": {
"name": "William Luke",
"email": "[email protected]",
"url": "https://github.com/williamluke4"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/grassrootseconomics/visualizer.git"
},
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"dev": "next",
"build": "next build",
"generate:graph": "kysely-codegen --out-file ./db/graph-db.d.ts",
"generate:indexer": "source .env && kysely-codegen --url $INDEXER_DB_URL --out-file ./db/indexer-db.d.ts --dialect postgres",
"start": "next start",
"cli": "esr ./bin/index.ts"
},
"dependencies": {
"@headlessui/react": "^1.7.15",
"@tailwindui/react": "^0.1.1",
"@upstash/redis": "^1.35.7",
"accessor-fn": "^1.5.0",
"autoprefixer": "^10.4.14",
"date-fns": "^2.30.0",
"framer-motion": "^10.12.17",
"jsdom": "^22.1.0",
"kysely": "^0.25.0",
"multicoin-address-validator": "^0.5.12",
"next": "^13.4.7",
"pg": "^8.11.1",
"postcss": "^8.4.24",
"prop-types": "^15.8.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-force-graph-2d": "1.29.0",
"react-force-graph-3d": "1.29.0",
"react-globe.gl": "^2.37.0",
"swr": "^2.2.0",
"tailwindcss": "^3.3.2",
"viem": "^2.41.2",
"web3": "^4.0.2"
},
"devDependencies": {
"@types/d3": "^7.4.0",
"@types/jsdom": "^21.1.1",
"@types/multicoin-address-validator": "^0.5.0",
"@types/node": "^20.3.2",
"@types/pg": "^8.10.2",
"@types/react": "^18.0.26",
"@types/three": "^0.146.0",
"@vercel/node": "^2.7.1",
"esbuild": "^0.18.10",
"esbuild-runner": "^2.2.2",
"eslint": "^8.43.0",
"eslint-config-next": "^13.4.7",
"jest": "^29.5.0",
"kysely-codegen": "^0.10.1",
"typescript": "^5.4.0"
}
}