-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 920 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 920 Bytes
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
{
"name": "discourse-graph",
"private": true,
"license": "Apache-2.0",
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"deploy": "turbo deploy",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"prepare": "husky"
},
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^16.3.2",
"prettier": "^3.6.0",
"prettier-plugin-gherkin": "^3.1.3",
"prettier-plugin-tailwindcss": "^0.6.13",
"turbo": "^2.5.4",
"typescript": "5.5.4"
},
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@10.15.1",
"workspaces": [
"apps/*",
"packages/*"
],
"prettier": {
"plugins": [
"prettier-plugin-tailwindcss"
],
"tailwindConfig": "./packages/tailwind-config/tailwind.config.ts"
},
"lint-staged": {
"*.{ts|tsx|md}": "prettier -w"
},
"dependencies": {
"posthog-js": "catalog:"
}
}