generated from UW-CSE442-WI20/FP-Template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 872 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
26
27
28
29
30
31
32
33
34
{
"name": "uw-cse442-fp-submission",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "parcel src/index.html",
"build": "parcel build src/index.html --no-minify --public-url https://uw-cse442-wi20.github.io/FP-music-synthesis/; rm -rf docs; mv dist docs;",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"babel": {
"plugins": [
[
"@babel/plugin-proposal-class-properties",
{
"loose": true
}
]
]
},
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"parcel-bundler": "^1.12.4",
"parcel-plugin-static-files-copy": "^2.3.1"
},
"dependencies": {
"d3": "^5.15.0",
"d3-simple-slider": "^1.5.4",
"tone": "^13.8.25"
}
}