-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.93 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.93 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
{
"name": "monorepo-template",
"version": "1.0.0",
"description": "This is a template for a basic monorepo with default configs.",
"license": "MIT",
"repository": "https://github.com/thekeytechnology/monorepo-template.git",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"lint": "eslint .",
"relay": "relay-compiler relay.config.js",
"start-backend": "bash -c 'source .env.paths && cd apps/backend && \"$JDK_HOME_LMS/bin/java\" -Xms512M -Xmx5g -Xss1M -Duser.timezone=UTC -Dconfig.resource=application.local.conf -Dhttp.port=9000 --illegal-access=deny --add-opens java.base/java.util=ALL-UNNAMED --add-opens java.base/java.lang=ALL-UNNAMED -Dfile.encoding=UTF-8 -classpath \"$INTELLIJ_PATH/plugins/Scala/launcher/sbt-launch.jar\" xsbt.boot.Boot run'",
"generate-schema": "cd apps/backend && sbt \"runMain com.thekey.academy.lms.deployment.ExportSchema ./packages/graphql/schema.graphql\"",
"generate:graphqlZodSchema": "graphql-codegen --config ./packages/graphql/codegen.yml",
"dev": "concurrently \"yarn start-backend\" \"yarn relay --watch\" \"yarn workspace @package/design-system dev\" \"yarn workspace @package/design-system panda:watch\"",
"postinstall": "patch-package && yarn workspace @package/design-system panda",
"bsdd-pull-schema": "npx swagger-typescript-api generate -p ./swagger.json -o ./apps/backend/src/bsdd-to-bim/types -n swagger.types.ts"
},
"devDependencies": {
"@graphql-codegen/cli": "5.0.7",
"@graphql-codegen/schema-ast": "4.1.0",
"@graphql-codegen/typescript": "4.1.6",
"@package/config": "workspace:*",
"@types/uuid": "11.0.0",
"concurrently": "9.2.0",
"graphql-codegen-typescript-validation-schema": "0.17.1",
"patch-package": "8.0.0",
"relay-compiler": "19.0.0"
},
"packageManager": "yarn@4.6.0",
"dependencies": {
"eslint": "9.23.0",
"fast-xml-parser": "4.0.15",
"moment-timezone": "0.6.0",
"vitest": "3.2.4",
"zod": "4.0.14",
"zod-joda": "2.1.0"
}
}