-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
34 lines (34 loc) · 916 Bytes
/
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
{
"name": "intellizen",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"dev": "cross-env NODE_ENV=development conc \"turbo langium:generate:watch\" \"turbo dev\"",
"build": "turbo build",
"lint": "eslint . --cache",
"lint:fix": "eslint . --cache --fix",
"test": "pnpm build && vitest --typecheck",
"test:update": "vitest --typecheck -u"
},
"dependencies": {
"@stoplight/json-ref-resolver": "^3.1.6",
"zod": "^3.23.8"
},
"devDependencies": {
"@antfu/eslint-config": "^3.9.2",
"@types/node": "^22.9.3",
"@types/wait-on": "^5.3.4",
"concurrently": "^9.1.0",
"cross-env": "^7.0.3",
"eslint": "^9.15.0",
"pnpm": "^9.14.2",
"reactive-vscode": "0.2.9",
"rimraf": "^6.0.1",
"tsup": "^8.3.5",
"turbo": "^2.3.1",
"typescript": "^5.7.2",
"vite": "^5.4.11",
"vitest": "^2.1.5",
"wait-on": "^8.0.1"
}
}