-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 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
44
45
{
"name": "blockdevelop-ide-monorepo",
"private": true,
"version": "0.5.1",
"description": "Free, open-source IDE for block-based programming inspired by FlashDevelop.",
"author": "Jimmy Santoyo",
"license": "MIT",
"packageManager": "pnpm@8.15.1",
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"test": "turbo run test",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md,css,scss}\"",
"typecheck": "turbo run typecheck",
"version:set": "node scripts/bump-version.mjs",
"clean": "rimraf apps/desktop/dist packages/core/dist packages/block-engine/dist packages/code-gen/dist packages/ui/dist .turbo",
"prepare": "husky"
},
"devDependencies": {
"@types/node": "^20.11.24",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"turbo": "^1.12.4",
"typescript": "^5.3.3",
"vitest": "^4.1.10"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,css,scss}": [
"prettier --write"
]
}
}