-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.04 KB
/
package.json
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
{
"name": "ham-san-net",
"version": "1.0.0",
"description": "",
"keywords": [],
"license": "ISC",
"author": "",
"main": "index.js",
"scripts": {
"compose:dev": "docker-compose -f docker-compose.dev.yml",
"prepare": "husky install && pnpm codegen:api && nx sync client && nx run-many -p client, astro -t prepare",
"codegen": "nx run-many -p client, astro -t codegen",
"check": "nx run-many -p client, astro -t lint, format",
"fix": "nx run-many -p client, astro -t fix:all",
"codegen:prod": "nx run-many -p client, astro -t codegen:prod",
"test": "echo \"Error: no test specified\" && exit 1",
"codegen:api": "pnpx openapi-typescript https://raw.githubusercontent.com/outline/openapi/main/spec3.yml -o ./libs/outline/schema.ts"
},
"lint-staged": {
"client/*.{ts,tsx,svelte}": "eslint --fix",
"astro/*.{astro,ts,tsx,svelte}": "eslint --fix"
},
"dependencies": {
"openapi-fetch": "^0.10.2",
"plugin-upload": "link:@strapi/plugin-upload",
"postcss-import": "^16.1.0",
"strapi-admin": "link:@strapi/plugin-content-type-builder/strapi-admin",
"tslib": "^2.6.3",
"typescript-eslint": "^7.15.0",
"vite": "^5.3.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@nrwl/devkit": "18.3.3",
"@nrwl/linter": "18.3.3",
"@nx-tools/nx-container": "^5.3.1",
"@nx/eslint": "18.3.3",
"@nx/eslint-plugin": "18.3.3",
"@nx/jest": "18.3.3",
"@nx/js": "18.3.3",
"@nxext/sveltekit": "18.0.0",
"@types/jest": "^29.5.12",
"@types/node": "20.12.7",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"eslint": "~9.1.1",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"lerna": "^8.1.5",
"lint-staged": "^15.2.7",
"nx": "18.3.3",
"nx-cloud": "18.0.0",
"openapi-typescript": "^7.0.2",
"prettier": "^3.3.2",
"ts-jest": "^29.1.5",
"ts-node": "10.9.2",
"typescript": "^5.5.3"
},
"nx": {
"targets": {}
}
}