-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.79 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.79 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
{
"name": "anicite",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Chrome analytics done right",
"scripts": {
"dev": "turbo run dev",
"dev:tui": "turbo run dev --ui=tui",
"dev:debug": "turbo run dev --verbose",
"dev:web": "turbo run dev --filter @repo/web",
"dev:extension": "turbo run dev --filter @repo/extension",
"build": "turbo run build",
"build:extension": "turbo run build --filter @repo/extension",
"typecheck": "turbo run typecheck",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"graph": "turbo run build --graph=graph.html && open graph.html",
"analyze": "turbo run build --dry-run=json > build-plan.json",
"prepare": "husky || true"
},
"devDependencies": {
"@next/eslint-plugin-next": "^16.1.1",
"@types/node": "^22.19.3",
"@typescript-eslint/eslint-plugin": "^8.52.0",
"@typescript-eslint/parser": "^8.52.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-n": "^17.23.1",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unicorn": "^61.0.2",
"eslint-plugin-unused-imports": "^4.3.0",
"globals": "^16.5.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"prettier": "^3.7.4",
"prettier-plugin-tailwindcss": "^0.6.14",
"tsx": "^4.21.0",
"turbo": "^2.7.3",
"typescript": "^5.9.3"
},
"packageManager": "pnpm@9.15.4",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"pnpm": {
"overrides": {
"react": "19.2.1",
"react-dom": "19.2.1",
"@types/react": "19.2.6",
"@types/react-dom": "19.2.3"
}
}
}