-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.35 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.35 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
69
70
71
{
"name": "linklens",
"version": "1.0.0",
"private": true,
"description": "URL shortener with analytics - LinkLens monorepo",
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"build:api": "npm run build -w @linklens/api",
"build:web": "npm run build -w @linklens/web",
"dev": "npm run dev --workspaces --if-present",
"dev:api": "npm run dev -w @linklens/api",
"debug:api": "npm run start:debug -w @linklens/api",
"dev:web": "npm run dev -w @linklens/web",
"dev:all": "concurrently \"npm run dev:api\" \"npm run dev:web\"",
"test": "npm run test --workspaces --if-present",
"test:api": "npm run test -w @linklens/api",
"test:web": "npm run test -w @linklens/web",
"lint": "npm run lint --workspaces --if-present",
"lint:fix": "npm run lint:fix --workspaces --if-present",
"clean": "npm run clean --workspaces --if-present",
"db:generate": "npm run db:generate -w @linklens/api",
"db:pull": "npm run db:pull -w @linklens/api",
"db:push": "npm run db:push -w @linklens/api",
"db:migrate": "npm run db:migrate -w @linklens/api",
"db:seed": "npm run db:seed -w @linklens/api",
"start:api": "npm run start -w @linklens/api",
"start:web": "npm run start -w @linklens/web"
},
"devDependencies": {
"@eslint-recommended/eslint-config": "^28.0.0",
"@types/node": "^20.10.0",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^8.40.0",
"@typescript-eslint/parser": "^8.40.0",
"concurrently": "^8.2.2",
"eslint": "^8.57.1",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.0",
"typescript": "^5.3.0"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"keywords": [
"url-shortener",
"analytics",
"nestjs",
"nextjs",
"monorepo"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"@tanstack/react-table": "^8.21.3"
}
}