forked from sugarlabs/musicblocks-v4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 3.03 KB
/
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
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
{
"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 --rule terminology --rule no-dead-link '**/*.md'",
"test": "lerna run test",
"coverage": "./coverage.sh"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.0.22",
"@storybook/addon-interactions": "^7.0.22",
"@storybook/addon-links": "^7.0.22",
"@storybook/blocks": "^7.0.22",
"@storybook/react": "^7.0.22",
"@storybook/react-vite": "^7.0.22",
"@storybook/testing-library": "^0.1.0",
"@types/node": "^16.11.41",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "5.27",
"@typescript-eslint/parser": "5.27",
"@vitejs/plugin-react": "^3.0.1",
"@vitest/coverage-v8": "^0.32.2",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^4.1.0",
"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": "^6.6.2",
"markdownlint": "^0.27.0",
"markdownlint-cli": "^0.33.0",
"nyc": "^15.1.0",
"prettier": "2.3.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-router-dom": "^6.14.0",
"rollup-plugin-visualizer": "5.9.0",
"sass": "^1.53.0",
"storybook": "^7.0.22",
"textlint": "^12.2.1",
"textlint-rule-no-dead-link": "^4.8.0",
"textlint-rule-no-empty-section": "^1.1.0",
"textlint-rule-terminology": "^2.1.6",
"ts-node": "^10.8.1",
"typescript": "~4.7.4",
"vite": "^4.0.4",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-ejs": "^1.6.4",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-pwa": "^0.14.1",
"vitest": "^0.32.2"
},
"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",
"app"
],
"dependencies": {
"quadtree-lib": "^1.0.9"
}
}