-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.43 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "burn-auction-dapp",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently \"pnpm dev:next\" \"pnpm dev:dappstore\" \"pnpm dev:indexer\"",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write \"**/*.{ts,tsx,md,js,json}\"",
"dev:next": "next dev",
"dev:dappstore": "dappstore dev --target 3000",
"dev:indexer": "tsx run-indexer.ts",
"prepare": "husky",
"test": "vitest",
"gen:types": "cross-env NODE_OPTIONS='--experimental-import-meta-resolve' tsx ./src/utilities/registry/scripts/gen-schema-types.mts",
"postinstall": "npm run gen:types && npm run prisma:generate",
"license": "node ./check-license.mjs",
"license:fix": "node ./check-license.mjs --fix",
"typecheck": "tsc --noEmit",
"prisma:validate": "prisma validate",
"prisma:generate": "prisma generate",
"prisma:db:push": "prisma db push",
"prisma:studio": "prisma studio"
},
"dependencies": {
"@evmos/dappstore-sdk": "^0.0.6",
"@headlessui/react": "^2.1.2",
"@heroicons/react": "^2.1.5",
"@prisma/client": "5.19.1",
"@xstate/react": "^4.1.1",
"clsx": "^2.1.1",
"cron": "^3.1.7",
"dappstore": "^0.0.6",
"dayjs": "^1.11.13",
"dotenv": "^16.4.5",
"next": "14.2.5",
"react": "^18",
"react-dom": "^18",
"tailwind-merge": "^2.5.2",
"viem": "^2.19.9",
"xstate": "^5.17.4"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.0.0",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@vitejs/plugin-react": "^4.3.1",
"chain-token-registry": "github:evmos/chain-token-registry#main",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"eslint": "^8",
"eslint-config-next": "14.2.5",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-typescript-sort-keys": "^3.2.0",
"eslint-plugin-unused-imports": "^2.0.0",
"globby": "^14.0.2",
"husky": "^9.1.4",
"jsdom": "^24.1.1",
"json-schema-to-typescript": "^15.0.1",
"lodash-es": "^4.17.21",
"postcss": "^8",
"prettier": "3.3.3",
"prisma": "^5.19.1",
"tailwindcss": "^3.4.1",
"tsx": "^4.17.0",
"typescript": "^5",
"vitest": "^2.0.5",
"body-parser": ">=1.20.3",
"path-to-regexp": ">=0.1.10"
}
}