-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.1 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.1 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
{
"name": "higure",
"version": "0.0.0",
"private": true,
"description": "Your complete daily reflections and self-analysis application.",
"author": "UsboKirishima <[email protected]>",
"license": "AGPL-3.0-only",
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"test": "turbo run test",
"test:e2e": "turbo run test:e2e",
"lint": "turbo run lint",
"lint:fix": "turbo run lint --fix",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"prepare": "husky"
},
"devDependencies": {
"@graphql-codegen/cli": "^6.1.0",
"@graphql-codegen/client-preset": "^5.2.2",
"@graphql-codegen/typed-document-node": "^6.1.5",
"@graphql-codegen/typescript": "^5.0.7",
"@graphql-codegen/typescript-operations": "^5.0.7",
"@higure/eslint-config": "*",
"@higure/typescript-config": "*",
"husky": "^9.1.7",
"prettier": "^3.2.5",
"turbo": "^2.7.2"
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"typescript-react-apollo": "^9.9.0"
}
}