-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
25 lines (25 loc) · 933 Bytes
/
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
{
"name": "synth",
"version": "1.0.0",
"description": "A code driven synthesizer for the browser",
"repository": "github.com/anuejn/muzikilo.js",
"author": "anuejn",
"license": "AGPL-3.0",
"scripts": {
"start": "mkdir -p dist/ && cp -r node_modules/monaco-editor/min/vs dist/monaco && cp -r node_modules/monaco-editor/min/vs dist/monaco/vs && parcel index.html",
"build": "mkdir -p dist/ && cp -r node_modules/monaco-editor/min/vs dist/monaco && cp -r node_modules/monaco-editor/min/vs dist/monaco/vs && parcel build --public-url \"./\" index.html",
"format": "prettier --write 'src/**/*.{js,jsx}'",
"test": "echo 'never mind…'"
},
"devDependencies": {
"parcel": "^1.12.4",
"prettier": "^1.13.5"
},
"dependencies": {
"@monaco-editor/react": "^3.6.2",
"monaco-editor": "^0.20.0",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-splitter-layout": "^4.0.0"
}
}