forked from Imploitchain/Eventura
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.4 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.4 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
{
"name": "base-event-ticketing-platform",
"version": "0.1.0",
"description": "Event ticketing platform built on Base blockchain with WalletConnect integration",
"private": true,
"packageManager": "[email protected]",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"test": "turbo run test",
"lint": "turbo run lint",
"type-check": "turbo run type-check",
"clean": "turbo run clean",
"contracts:compile": "cd packages/contracts && npm run compile",
"contracts:deploy": "cd packages/contracts && npm run deploy",
"contracts:test": "cd packages/contracts && npm run test",
"prepare": "husky"
},
"dependencies": {
"@prisma/client": "^7.0.0",
"@types/pg": "^8.15.6",
"@types/qrcode": "^1.5.6",
"@types/react": "^19.2.7",
"drizzle-orm": "^0.44.7",
"lucide-react": "^0.556.0",
"next-themes": "^0.4.6",
"pg": "^8.16.3",
"qrcode": "^1.5.4"
},
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.0.0",
"turbo": "^2.6.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"lint-staged": {
"apps/web/**/*.{ts,tsx}": [
"eslint --fix",
"bash -c 'cd apps/web && tsc --noEmit'"
],
"packages/**/*.{ts,tsx}": [
"eslint --fix",
"bash -c 'tsc --noEmit --project tsconfig.json'"
]
}
}