forked from daotl/effect-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
120 lines (120 loc) · 4.38 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
{
"name": "@nodejs-effect-starter/main",
"description": "Node.js + Effect starter template for DAOT projects",
"private": true,
"type": "module",
"main": "./dist/main.js",
"packageManager": "[email protected]",
"pnpm": {
"patchedDependencies": {
"@effect/[email protected]": "patches/@[email protected]",
"@typescript-eslint/[email protected]": "patches/@[email protected]",
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]",
"@fp-ts/[email protected]": "patches/@[email protected]"
}
},
"scripts": {
"circular": "pnpm circular:src && pnpm circular:dist",
"circular:src": "madge --circular --ts-config ./tsconfig.json --extensions ts ./_src",
"circular:dist": "madge --circular --extensions js ./dist",
"clean": "rm -rf dist _test/dist",
"clean:dist": "sh scripts/clean-dist.sh",
"build": "pnpm clean:dist && NODE_OPTIONS=--max-old-space-size=8192 tsc --build",
"rebuild": "pnpm clean && pnpm build",
"build:watch": "pnpm build --watch",
"build:watch2": "pnpm clean:dist && NODE_OPTIONS=--max-old-space-size=8192 tsc -w",
"compile": "NODE_OPTIONS=--max-old-space-size=8192 tsc --noEmit",
"lint": "biome format . && biome check .",
"lint:fix": "biome format --write . && biome check --apply .",
"eslint": "NODE_OPTIONS=--max-old-space-size=8192 ESLINT_TS=1 eslint _src/** _test/**/*.ts",
"eslint:watch": "ESLINT_TS=1 esw -w --changed --clear --ext ts,tsx _src/** _test/**",
"test": "vitest",
"test:run": "pnpm run test run",
"testsuite": "pnpm circular && pnpm run test:run && pnpm lint",
"dev": "NODE_ENV=development nodemon --signal SIGTERM --exec pnpm dev:compiled",
"dev:compiled": "pnpm start:compiled | scripts/humanlog.sh",
"start": "pnpm start:compiled",
"start:compiled": "node --experimental-specifier-resolution=node -r source-map-support/register ./dist/main.js",
"up-all": "pnpm --recursive update",
"up-ncu": "pnpm run update && pnpm i",
"update": "ncu -u && pnpm -r ncu -u",
"ncu": "ncu",
"nnm": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' + && pnpm i",
"preinstall": "npx only-allow pnpm"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./_cjs/index.cjs"
}
},
"./*": {
"import": {
"types": "./dist/*.d.ts",
"default": "./dist/*.js"
},
"require": {
"types": "./dist/*.d.ts",
"default": "./_cjs/*.cjs"
}
}
},
"resolutions": {
"@effect/schema": "0.42.0",
"@types/node": "~20.8.3",
"date-fns": "2.29.3",
"effect": "2.0.0-next.47",
"http-proxy": "npm:[email protected]"
},
"dependencies": {
"@daotl-effect/prelude": "^0.0.20",
"@effect-app/core": "^0.58.4",
"@effect-app/infra": "^0.75.4",
"@effect-app/infra-adapters": "^0.51.4",
"@effect-app/prelude": "^0.60.4",
"dotenv": "^16.3.1",
"dotenv-expand": "^10.0.0",
"effect": "^2.0.0-next.47",
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@biomejs/biome": "^1.2.2",
"@daotl/biome-config": "0.0.1",
"@effect-app/cli": "^0.17.0",
"@effect-app/compiler": "^0.28.0",
"@effect/language-service": "0.0.19",
"@tsconfig/esm": "^1.0.5",
"@tsconfig/node20": "^20.1.2",
"@tsconfig/strictest": "^2.0.2",
"@tsplus/installer": "0.0.179",
"@types/node": "~20.8.3",
"@typescript-eslint/eslint-plugin": "6.7.3",
"@typescript-eslint/parser": "6.7.3",
"@typescript-eslint/scope-manager": "6.7.3",
"babel-plugin-replace-import-extension": "^1.1.3",
"concurrently": "^8.2.1",
"cross-env": "^7.0.3",
"enhanced-resolve": "^5.15.0",
"eslint": "^8.51.0",
"eslint-plugin-codegen": "^0.17.0",
"eslint-watch": "^8.0.0",
"madge": "^6.1.0",
"nodemon": "^3.0.1",
"npm-check-updates": "^16.14.5",
"prebuild-install": "^7.1.1",
"ts-node": "^10.9.1",
"ts-transform-paths": "^3.0.0",
"tsc-watch": "^6.0.4",
"tsconfig-paths": "^4.2.0",
"typescript": "npm:@effect-app/[email protected]",
"typescript-transform-paths": "^3.4.6",
"unplugin-auto-import": "^0.16.6",
"vitest": "^0.34.6"
}
}