-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.06 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.06 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
{
"name": "@effect-template/api",
"version": "0.1.0",
"private": true,
"description": "docker-git clean-slate v1 API",
"main": "dist/src/main.js",
"type": "module",
"scripts": {
"prebuild": "pnpm -C ../lib build",
"build": "tsc -p tsconfig.json",
"dev": "tsc -p tsconfig.json --watch",
"prestart": "pnpm run build",
"start": "node dist/src/main.js",
"pretypecheck": "pnpm -C ../lib build",
"typecheck": "tsc --noEmit -p tsconfig.json",
"lint": "eslint .",
"pretest": "pnpm -C ../lib build",
"test": "vitest run"
},
"dependencies": {
"@effect-template/lib": "workspace:*",
"@effect/platform": "^0.96.0",
"@effect/platform-node": "^0.106.0",
"@effect/schema": "^0.75.5",
"effect": "^3.21.0"
},
"devDependencies": {
"@effect/vitest": "^0.29.0",
"@eslint/js": "10.0.1",
"@types/node": "^24.12.0",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"eslint": "^10.1.0",
"globals": "^17.4.0",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
}
}