-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.34 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.34 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
{
"name": "forge-migration",
"version": "0.1.0",
"private": true,
"description": "Open-source code migration engine",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo run build",
"build:sdk": "npm run build --workspace=@forge/sdk",
"build:web": "npm run build --workspace=@forge/web",
"build:vscode": "npm run build --workspace=forge-vscode",
"dev": "turbo run dev",
"dev:web": "npm run dev --workspace=@forge/web",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"format": "prettier --write \"**/*.{ts,tsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,json,md}\"",
"typecheck": "tsc --noEmit",
"clean": "rm -rf node_modules packages/*/node_modules packages/*/dist"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^3.1.0",
"turbo": "^1.11.0",
"typescript": "^5.3.2",
"vitest": "^1.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "npm@10.0.0"
}