-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.43 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
{
"name": "here-now",
"version": "0.1.0",
"type": "module",
"description": "A simple, privacy-focused visitor tracking API",
"main": "dist/server.js",
"scripts": {
"dev": "tsx watch src/server.ts",
"dev:vercel": "vercel dev",
"build": "prisma generate && tsc",
"start": "node dist/server.js",
"postinstall": "prisma generate",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"fix": "npm run format && npm run lint:fix",
"lint": "eslint",
"lint:all": "bunx concurrently --success=all -n ESLint,Prettier,TS -c cyan,green,magenta \"bun run lint:quiet\" \"bun run format:check\" \"bun run ts:check\"",
"lint:fix": "eslint --fix --quiet",
"format": "prettier . --write"
},
"dependencies": {
"@prisma/client": "^6.16.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"uuid": "^13.0.0",
"zod": "^4.1.7"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.0.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.43.0",
"@typescript-eslint/parser": "^8.43.0",
"@vercel/node": "^3.0.0",
"eslint": "^9.35.0",
"prisma": "^6.16.0",
"tsx": "^4.0.0",
"typescript": "^5.3.0"
},
"keywords": [
"analytics",
"visitor-tracking",
"privacy",
"self-hosted"
],
"author": "Fred Rivett",
"license": "CC-BY-NC-SA-4.0"
}