-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1022 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
35
36
37
38
{
"name": "parcel",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "parcel index.html",
"build": "parcel build index.html --out-dir build --public-url '.'",
"deploy": "git push origin `git subtree split --prefix build`:gh-pages --force"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"jest": "^23.1.0",
"node-sass": "^4.9.0",
"parcel-bundler": "^1.8.1",
"react-test-renderer": "^16.4.0"
},
"dependencies": {
"lodash": "^4.17.10",
"music-scale": "^1.2.0",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-select": "^2.0.0",
"tone": "^0.12.80",
"web-audio-daw": "^4.2.0"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/test-setup.js",
"testURL": "http://localhost"
}
}