-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
32 lines (32 loc) · 1.08 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
{
"name": "music-explorer",
"version": "0.0.1",
"description": "A small web piano to learn and explore music theory",
"repository": "https://github.com/emanchado/music-explorer",
"author": "Esteban Manchado Velázquez <[email protected]>",
"scripts": {
"compile": "browserify -vd -t babelify -t uglifyify src/music-explorer.jsx | uglifyjs --compress --mangle -- >public/js/bundle.js && node-sass public/css/main.scss public/css/main.css",
"watch": "watchify -vd -t babelify src/music-explorer.jsx -o public/js/bundle.js",
"watch-sass": "node-sass -w public/css/main.scss public/css/main.css",
"test": "ava"
},
"devDependencies": {
"ava": "^0.4.2",
"babel-cli": "^6.1.18",
"babel-plugin-react-transform": "^1.1.1",
"babelify": "^6.3.0",
"browserify": "^11.2.0",
"node-sass": "^4.14.1",
"uglifyify": "^3.0.1",
"uglifyjs": "^2.4.10",
"watchify": "^3.4.0"
},
"license": "MIT",
"dependencies": {
"mousetrap": "^1.6.2",
"ramda": "^0.18.0",
"react": "^0.14.0",
"react-dom": "^0.14.0",
"teoria": "2.5.0"
}
}