-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
134 lines (134 loc) · 5.71 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "@effect-app-boilerplate/root",
"private": true,
"type": "module",
"pnpm": {
"patchedDependencies": {
"eslint-plugin-codegen@0.17.0": "patches/eslint-plugin-codegen@0.17.0.patch",
"@phaphoso/eslint-plugin-dprint@0.5.2": "patches/@phaphoso__eslint-plugin-dprint@0.5.2.patch",
"@hebilicious/vue-query-nuxt@0.3.0": "patches/@hebilicious__vue-query-nuxt@0.3.0.patch",
"typescript": "patches/typescript.patch",
"@effect/platform": "patches/@effect__platform.patch",
"effect": "patches/effect.patch"
}
},
"engines": {
"pnpm": ">= 9.0.4"
},
"scripts": {
"all": "pnpm -r --filter \"!./play\" --filter \"!./libs/**/*\"",
"preinstall": "npx only-allow pnpm",
"clean": "pnpm all clean",
"clean-dist": "pnpm all clean-dist",
"autofix": "NODE_OPTIONS=--max-old-space-size=8192 pnpm eslint api --fix && pnpm lint-frontend --fix && pnpm lint-e2e --fix",
"lint": "pnpm eslint api && pnpm lint-frontend && pnpm lint-e2e",
"circular:dist": "pnpm all circular:dist",
"start": "concurrently -k -p \"[{name}]\" -n \"API,Frontend\" -c \"cyan.bold,green.bold,blue.bold\" \"pnpm start:api\" \"pnpm start:frontend\"",
"start:api": "cd api && pnpm start",
"start:frontend": "cd frontend && pnpm start",
"dev": "concurrently -k -p \"[{name}]\" -n \"Watch,API,Frontend\" -c \"yellow.bold,cyan.bold,green.bold\" \"pnpm watch\" \"pnpm dev:api\" \"pnpm dev:frontend\"",
"dev:api": "cd api && pnpm dev",
"dev:frontend": "cd frontend && pnpm dev",
"build-apps": "cd api && pnpm build && cd ../frontend && pnpm build",
"test": "pnpm all test",
"testsuite": "pnpm all testsuite",
"up-all": "pnpm --recursive update",
"u": "pnpm run update && pnpm i && pnpm dedupe",
"update": "ncu -u && pnpm -r ncu -u",
"ncu": "ncu",
"build-libs": "cd libs && pnpm build && cd ../.. && pnpm build",
"lint:watch": "ESLINT_TS=1 esw -w --changed --clear --ext ts,tsx",
"apps": "pnpm all --workspace-concurrency 1",
"api": "pnpm all --workspace-concurrency 1 --filter \"./api\"",
"lint-api": "pnpm eslint api",
"lint-e2e": "cd e2e && pnpm lint",
"lint-frontend": "cd frontend && pnpm lint",
"build:tsc": "NODE_OPTIONS=--max-old-space-size=8192 effect-app-cli index-multi tspc --build",
"build": "pnpm build:tsc ./tsconfig.all.json && cd frontend && pnpm compile",
"watch": "pnpm build:tsc ./tsconfig.all.json --watch",
"watch-src": "pnpm build:tsc ./tsconfig.src.json --watch",
"build-prod": "pnpm packages build && pnpm build-frontend-prod",
"build-frontend-prod": "cd frontend && pnpm build",
"rbuild": "pnpm clean && pnpm build",
"nnm": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' + && pnpm i"
},
"resolutions": {
"@opentelemetry/api": "$@opentelemetry/api",
"@opentelemetry/exporter-metrics-otlp-http": "$@opentelemetry/exporter-metrics-otlp-http",
"@opentelemetry/exporter-trace-otlp-http": "$@opentelemetry/exporter-trace-otlp-http",
"@opentelemetry/resources": "$@opentelemetry/resources",
"@opentelemetry/sdk-metrics": "$@opentelemetry/sdk-metrics",
"@opentelemetry/sdk-trace-base": "$@opentelemetry/sdk-trace-base",
"@opentelemetry/sdk-trace-node": "$@opentelemetry/sdk-trace-node",
"@opentelemetry/sdk-trace-web": "$@opentelemetry/sdk-trace-web",
"@opentelemetry/semantic-conventions": "$@opentelemetry/semantic-conventions",
"date-fns": "$date-fns",
"fast-check": "$fast-check",
"vue": "$vue"
},
"dependencies": {
"date-fns": "^4.1.0",
"effect": "^3.10.16",
"@effect/experimental": "^0.32.9",
"@effect/opentelemetry": "^0.39.16",
"@effect/platform": "^0.69.25",
"@effect/platform-node": "^0.64.27",
"@effect/schema": "0.75.5",
"@opentelemetry/api": "^1.9",
"@opentelemetry/exporter-metrics-otlp-http": "^0.55.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.55.0",
"@opentelemetry/resources": "^1.28.0",
"@opentelemetry/sdk-metrics": "^1.28.0",
"@opentelemetry/sdk-trace-base": "^1.28.0",
"@opentelemetry/sdk-trace-node": "^1.28.0",
"@opentelemetry/sdk-trace-web": "^1.28.0",
"@opentelemetry/semantic-conventions": "^1.28.0",
"cross-env": "^7.0.3",
"fast-check": "^3.23.1",
"package-up": "^5.0.0",
"patch-package": "^8.0.0",
"ts-patch": "^3.2.1",
"vite-node": "^2.1.5",
"vite-tsconfig-paths": "^5.1.3",
"vue": "^3.5.13"
},
"devDependencies": {
"@dprint/typescript": "^0.93.2",
"@effect-app/cli": "^1.9.0",
"@effect-app/eslint-codegen-model": "^1.28.0",
"@phaphoso/eslint-plugin-dprint": "^0.5.2",
"@tsconfig/strictest": "^2.0.5",
"@types/lodash": "^4.17.13",
"@types/node": "~22.9.3",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"@typescript-eslint/scope-manager": "^8.15.0",
"concurrently": "^9.1.0",
"dprint": "^0.47.5",
"effect-app": "^2.16.0",
"enhanced-resolve": "^5.17.1",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-import-resolver-webpack": "^0.13.9",
"eslint-plugin-codegen": "^0.17.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier-vue": "^5.0.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sort-destructure-keys": "^2.0.0",
"eslint-plugin-unused-imports": "^4.1.4",
"eslint-watch": "^8.0.0",
"madge": "^8.0.0",
"nodemon": "^3.1.7",
"npm-check-updates": "^17.1.11",
"prebuild-install": "^7.1.2",
"ts-toolbelt": "^9.6.0",
"tsc-watch": "^6.2.1",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.19.2",
"typescript": "~5.6.3",
"typescript-transform-paths": "^3.5.2",
"unplugin-auto-import": "^0.18.5",
"vite": "^5.4.11",
"vitest": "^2.1.5"
}
}