-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
86 lines (86 loc) · 2.46 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
{
"name": "eim",
"version": "0.0.0",
"description": "A simple daw",
"main": "index.js",
"dependencies": {
"@babel/core": "^7.17.9",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@fontsource/roboto": "^4.5.5",
"@mui/icons-material": "^5.6.0",
"@mui/lab": "^5.0.0-alpha.76",
"@mui/material": "^5.6.0",
"@mui/styles": "^5.6.0",
"@parcel/transformer-less": "^2.4.1",
"babel-plugin-direct-import": "^1.0.0",
"buffer": "^6.0.3",
"del-cli": "^4.0.1",
"events": "^3.3.0",
"jsdoc": "^3.6.10",
"less": "^4.1.2",
"long": "^3.2.0",
"mdi-material-ui": "^7.2.0",
"midi-file": "^1.2.2",
"minimist": "^1.2.6",
"mui-color": "^2.0.0-beta.2",
"notistack": "^2.0.3",
"parcel": "^2.4.1",
"pretty-bytes": "^6.0.0",
"protobufjs": "^6.11.2",
"re-resizable": "^6.9.5",
"react": "^18.0.0",
"react-contenteditable": "^3.3.6",
"react-dom": "^18.0.0",
"react-fast-marquee": "^1.3.1",
"react-hotkeys": "^2.0.0",
"react-router-dom": "^6.3.0",
"react-timeago": "^6.2.1",
"ts-node": "^10.5.0",
"tslib": "^1.14.1",
"typescript": "^4.6.3",
"uglify-js": "^3.15.4",
"use-debounce": "^7.0.1"
},
"devDependencies": {
"@types/node": "^17.0.23",
"@types/react": "^18.0.1",
"@types/react-dom": "^18.0.0",
"@types/react-timeago": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"eslint": "^8.13.0",
"eslint-config-standard": "^16.0.3",
"eslint-config-standard-jsx": "^10.0.0",
"eslint-config-standard-react": "^11.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.29.4"
},
"targets": {
"main": false
},
"scripts": {
"start": "parcel web/index.html",
"clear": "del-cli dist",
"build": "npm run clear && parcel build web/index.html",
"generate:proto": "pbjs -t static-module -w es6 -o packets/packets.js packets/packets.proto && pbts -o packets/packets.d.ts packets/packets.js && ts-node scripts/generatePacketsClass"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EchoInMirror/EIM.git"
},
"keywords": [
"daw",
"juce",
"music",
"vst"
],
"author": "Shirasawa",
"license": "MIT",
"bugs": {
"url": "https://github.com/EchoInMirror/EIM/issues"
},
"homepage": "https://github.com/EchoInMirror/EIM#readme"
}