-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.33 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.33 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
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
{
"name": "@effect-template/app",
"version": "1.0.0",
"description": "Minimal Vite-powered TypeScript console starter using Effect",
"main": "dist/main.js",
"directories": {
"doc": "doc"
},
"scripts": {
"prebuild": "pnpm -C ../lib build",
"build": "vite build --ssr src/app/main.ts",
"dev": "vite build --watch --ssr src/app/main.ts",
"prelint": "pnpm -C ../lib build",
"lint": "npx @ton-ai-core/vibecode-linter src/",
"lint:tests": "npx @ton-ai-core/vibecode-linter tests/",
"lint:effect": "npx eslint --config eslint.effect-ts-check.config.mjs .",
"prebuild:docker-git": "pnpm -C ../lib build",
"build:docker-git": "tsc -p tsconfig.json",
"check": "pnpm run typecheck",
"clone": "pnpm -C ../.. run clone",
"docker-git": "pnpm -C ../.. run docker-git",
"list": "pnpm -C ../.. run list",
"prestart": "pnpm run build",
"start": "node dist/main.js",
"pretest": "pnpm -C ../lib build",
"test": "pnpm run lint:tests && vitest run",
"pretypecheck": "pnpm -C ../lib build",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ProverCoderAI/effect-template.git"
},
"keywords": [
"effect",
"typescript",
"vite",
"console"
],
"author": "",
"license": "ISC",
"type": "module",
"bugs": {
"url": "https://github.com/ProverCoderAI/effect-template/issues"
},
"homepage": "https://github.com/ProverCoderAI/effect-template#readme",
"packageManager": "pnpm@10.28.0",
"dependencies": {
"@effect-template/lib": "workspace:*",
"@effect/cli": "^0.73.0",
"@effect/cluster": "^0.56.1",
"@effect/experimental": "^0.58.0",
"@effect/platform": "^0.94.1",
"@effect/platform-node": "^0.104.0",
"@effect/printer": "^0.47.0",
"@effect/printer-ansi": "^0.47.0",
"@effect/rpc": "^0.73.0",
"@effect/schema": "^0.75.5",
"@effect/sql": "^0.49.0",
"@effect/typeclass": "^0.38.0",
"@effect/workflow": "^0.16.0",
"effect": "^3.19.14",
"ink": "^5.0.1",
"react": "^18.3.1",
"react-reconciler": "^0.29.2",
"ts-morph": "^27.0.2"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@effect/eslint-plugin": "^0.3.2",
"@effect/language-service": "latest",
"@effect/vitest": "^0.27.0",
"@eslint-community/eslint-plugin-eslint-comments": "^4.6.0",
"@eslint/compat": "2.0.1",
"@eslint/eslintrc": "3.3.3",
"@eslint/js": "9.39.2",
"@prover-coder-ai/eslint-plugin-suggest-members": "^0.0.13",
"@ton-ai-core/vibecode-linter": "^1.0.6",
"@types/node": "^24.10.9",
"@typescript-eslint/eslint-plugin": "^8.53.0",
"@typescript-eslint/parser": "^8.53.0",
"typescript-eslint": "^8.53.0",
"@vitest/coverage-v8": "^4.0.17",
"eslint": "^9.39.2",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-codegen": "0.34.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sonarjs": "^3.0.5",
"eslint-plugin-sort-destructure-keys": "^2.0.0",
"eslint-plugin-unicorn": "^62.0.0",
"@vitest/eslint-plugin": "^1.6.6",
"@types/react": "^18.3.12",
"biome": "npm:@biomejs/biome@^2.3.11",
"globals": "^17.0.0",
"jscpd": "^4.0.7",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vite-tsconfig-paths": "^6.0.4",
"vitest": "^4.0.17"
}
}