forked from sugarlabs/musicblocks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.6 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.6 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
{
"name": "musicblocks",
"version": "3.4.1",
"main": "electron-main.js",
"description": "A musical microworld",
"repository": {
"url": "https://github.com/sugarlabs/musicblocks.git"
},
"license": "AGPL-3.0 License",
"bugs": {
"url": "https://github.com/sugarlabs/musicblocks/issues"
},
"amd": {},
"scripts": {
"lint": "eslint js/ planet/js/",
"serve": "http-server -a 127.0.0.1 -p 3000 --gzip --brotli",
"serve:dev": "http-server -a 127.0.0.1 -p 3000 -c-1",
"start": "node index.js",
"dev": "cross-env NODE_ENV=development nodemon index.js",
"prod": "cross-env NODE_ENV=production node index.js",
"test": "jest",
"cypress:run": "cypress run",
"electron": "electron .",
"dist": "electron-builder"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/eslint-parser": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"cross-env": "^7.0.3",
"cypress": "^15.9.0",
"electron": "40.0.0",
"electron-builder": "26.8.1",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.0.0",
"fake-indexeddb": "6.2.5",
"gulp": "^5.0.1",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-prettier": "^3.0.0",
"gulp-uglify": "^3.0.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^30.2.0",
"nodemon": "^3.1.9"
},
"dependencies": {
"@tonejs/midi": "^2.0.28",
"autoprefixer": "^10.4.16",
"compression": "^1.8.1",
"cssnano": "^7.1.2",
"express": "5.2.1",
"gulp-concat": "^2.6.1",
"gulp-postcss": "^10.0.0",
"gulp-replace": "^1.1.4",
"gulp-sass": "^6.0.1",
"gulp-sourcemaps": "^3.0.0",
"http-server": "^14.1.1",
"i18next": "^25.3.2",
"i18next-http-backend": "^3.0.2",
"node": "^24.2.0",
"postcss": "^8.5.6",
"sass": "^1.97.2",
"tone": "^15.1.22"
},
"build": {
"appId": "com.musicblocks.app",
"productName": "Music Blocks",
"mac": {
"category": "public.app-category.music",
"target": "dmg"
},
"win": {
"target": "nsis"
},
"linux": {
"target": "AppImage"
}
},
"overrides": {
"tar": "^7.5.10",
"ajv": "^6.14.0",
"@isaacs/brace-expansion": "^5.0.1",
"immutable": "^5.1.5",
"svgo": "^4.0.1",
"@gulp-sourcemaps/identity-map": {
"postcss": "^8.4.31"
}
}
}