forked from sugarlabs/musicblocks-v4
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.21 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.21 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
103
{
"name": "@sugarlabs/musicblocks4",
"version": "4.2.0",
"description": "A complete overhaul of Music Blocks",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/sugarlabs/musicblocks-v4.git"
},
"homepage": "https://sugarlabs.github.io/musicblocks-v4",
"keywords": [
"musicblocks"
],
"author": "Anindya Kundu <anindya.k22@outlook.com> (https://github.com/meganindya/)",
"license": "AGPL-3.0",
"module": "true",
"scripts": {
"serve": "lerna --scope @sugarlabs/mb4-app run serve",
"build": "lerna --scope @sugarlabs/mb4-app run build",
"build:gh": "lerna --scope @sugarlabs/mb4-app run build:gh",
"preview": "lerna --scope @sugarlabs/mb4-app run preview",
"preview:gh": "lerna --scope @sugarlabs/mb4-app run preview:gh",
"visualize": "lerna --scope @sugarlabs/mb4-app run visualize",
"deploy": "lerna --scope @sugarlabs/mb4-app run deploy",
"check": "lerna run check",
"lint": "lerna run lint && markdownlint -i '**/node_modules/**' . && textlint '**/*.md'",
"test": "lerna run test",
"coverage": "./coverage.sh"
},
"devDependencies": {
"@storybook/addon-essentials": "^8.6.14",
"@storybook/addon-interactions": "^8.6.14",
"@storybook/addon-links": "^8.6.14",
"@storybook/blocks": "^8.6.14",
"@storybook/react": "^8.6.14",
"@storybook/react-vite": "^8.6.14",
"@storybook/test": "^8.6.14",
"@types/lodash.clonedeep": "^4.5.9",
"@types/node": "^24.0.1",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@typescript-eslint/eslint-plugin": "^8.34.0",
"@typescript-eslint/parser": "^8.34.0",
"@vitejs/plugin-react": "^4.5.2",
"@vitest/coverage-v8": "^3.2.3",
"eslint": "^8.31.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^5.4.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.1",
"http-server": "^14.1.1",
"lerna": "^8.2.2",
"markdownlint": "^0.38.0",
"markdownlint-cli": "^0.45.0",
"nodemon": "^3.0.0",
"nyc": "^17.1.0",
"prettier": "^3.5.3",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-router-dom": "^6.14.0",
"rollup-plugin-visualizer": "^6.0.3",
"sass": "^1.89.2",
"storybook": "^8.6.14",
"textlint": "^14.8.0",
"textlint-filter-rule-comments": "^1.2.2",
"textlint-rule-no-dead-link": "^5.2.0",
"textlint-rule-no-empty-section": "^1.1.0",
"textlint-rule-terminology": "^5.2.12",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-ejs": "^1.7.0",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-pwa": "^1.0.0",
"vitest": "^3.2.3"
},
"workspaces": [
"lib/assets",
"lib/config",
"lib/events",
"lib/i18n",
"lib/transport",
"lib/view",
"lib/components",
"modules/code-builder",
"modules/editor",
"modules/menu",
"modules/painter",
"modules/singer",
"modules/masonry",
"modules/program",
"modules/runtime",
"app"
],
"dependencies": {
"lodash.clonedeep": "^4.5.0",
"quadtree-lib": "^1.0.9",
"recoil": "^0.7.7"
}
}