-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
109 lines (109 loc) · 4.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
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
{
"name": "@effect-app/boilerplate-root",
"private": true,
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]",
"@phaphoso/[email protected]": "patches/@[email protected]",
"typescript": "patches/typescript.patch",
"effect": "patches/effect.patch"
}
},
"engines": {
"pnpm": ">= 9.0.4"
},
"scripts": {
"all": "pnpm -r --filter=!./packages/pnpm-singleton",
"pub": "pnpm ci:version && git commit -am 'chore: update versions' && pnpm ci:publish",
"ci:version": "pnpm changeset version",
"ci:publish": "pnpm all publish --access=public",
"preinstall": "npx only-allow pnpm",
"clean": "pnpm all clean",
"clean-dist": "pnpm -r clean-dist",
"autofix": "NODE_OPTIONS=--max-old-space-size=6144 pnpm -r --no-bail autofix",
"lint": "pnpm -r lint",
"circular:dist": "pnpm -r circular:dist",
"test": "pnpm -r test:run",
"testsuite": "pnpm -r testsuite",
"up-all": "pnpm --recursive update",
"u": "pnpm run update && pnpm i && pnpm dedupe",
"update": "ncu -u && pnpm -r ncu -u",
"ncu": "ncu",
"lint:watch": "ESLINT_TS=1 esw -w --changed --clear --ext ts,tsx",
"packages": "pnpm -r --workspace-concurrency 1",
"circular-packages": "pnpm packages circular",
"lint-packages": "pnpm packages lint",
"test-packages": "pnpm packages test:run",
"testsuite-packages": "pnpm packages testsuite",
"watch-packages": "pnpm packages build && pnpm packages watch",
"build:tsc": "effect-app-cli packagejson-packages tsc --build ./tsconfig.all.json",
"watch": "cd packages/effect-app && pnpm build && cd .. && pnpm build:tsc --watch",
"build": "cd packages/effect-app && pnpm build && cd .. && pnpm build:tsc",
"rbuild": "pnpm clean && pnpm build",
"nnm": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' + && pnpm i"
},
"resolutions": {
"date-fns": "$date-fns",
"fast-check": "$fast-check",
"vue": "$vue"
},
"dependencies": {
"cross-env": "^7.0.3",
"date-fns": "^4.1.0",
"fast-check": "^3.23.1",
"vue": "^3.5.13"
},
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@babel/plugin-syntax-import-attributes": "^7.26.0",
"@babel/plugin-transform-modules-commonjs": "^7.25.9",
"@changesets/cli": "^2.27.10",
"@dprint/typescript": "^0.93.3",
"@effect-app/cli": "^1.9.0",
"@effect-app/eslint-codegen-model": "workspace:*",
"@effect-app/infra": "workspace:*",
"@effect-app/pnpm-singleton": "workspace:*",
"@effect/language-service": "0.2.0",
"@effect/platform": "^0.69.27",
"@effect/platform-node": "^0.64.29",
"@phaphoso/eslint-plugin-dprint": "^0.5.2",
"@tsconfig/strictest": "^2.0.5",
"@types/lodash": "^4.17.13",
"@types/node": "~22.10.0",
"@typescript-eslint/eslint-plugin": "8.16.0",
"@typescript-eslint/parser": "8.16.0",
"@typescript-eslint/scope-manager": "8.16.0",
"babel-plugin-replace-import-extension": "^1.1.4",
"concurrently": "^9.1.0",
"dprint": "^0.47.5",
"effect": "^3.10.18",
"effect-app": "workspace:*",
"enhanced-resolve": "^5.17.1",
"eslint": "^8.57.1",
"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",
"history": "^5.3.0",
"json5": "^2.2.3",
"madge": "^8.0.0",
"module-alias": "^2.2.3",
"nodemon": "^3.1.7",
"npm-check-updates": "^17.1.11",
"ts-transform-paths": "^3.0.0",
"tsc-watch": "^6.2.1",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"unplugin-auto-import": "^0.18.5",
"vite": "^6.0.1",
"vitest": "^2.1.6"
}
}