-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.75 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
{
"name": "blockly-repo",
"version": "0.0.0",
"description": "Monorepo for blockly and related packages",
"keywords": [
"blockly"
],
"homepage": "https://blockly.com",
"bugs": {
"url": "https://github.com/RaspberryPiFoundation/blockly/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RaspberryPiFoundation/blockly.git"
},
"license": "Apache-2.0",
"author": "Raspberry Pi Foundation",
"private": true,
"workspaces": [
"packages/*",
"packages/plugins/*"
],
"devDependencies": {
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.0.2",
"@eslint/js": "^10.0.1",
"@nx/js": "^23.1.0",
"conventional-changelog-conventionalcommits": "^9.3.1",
"eslint": "10.5.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsdoc": "^63.2.2",
"eslint-plugin-mdx": "^3.7.0",
"eslint-plugin-mocha": "^11.3.0",
"eslint-plugin-prettier": "^5.5.6",
"globals": "^17.6.0",
"lerna": "^9.0.7",
"nx": "23.1.1",
"patch-package": "^8.0.1",
"prettier": "3.9.6",
"prettier-plugin-organize-imports": "^4.3.0",
"typescript-eslint": "^8.66.0"
},
"scripts": {
"test": "npx nx run-many -t test --exclude=blockly && npx nx run blockly:test",
"lint": "npm run lint --ws --if-present",
"lint:fix": "npm run lint:fix --ws --if-present",
"build": "npx nx run-many -t build --exclude=blockly-docs",
"build:docs": "npx nx run blockly-docs:build",
"build:all": "npx nx run-many -t build",
"format": "prettier --write .",
"format:check": "prettier --check .",
"postinstall": "patch-package",
"clean": "npx nx reset && npm run clean --ws --if-present"
},
"dependencies": {}
}