-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 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
33
34
35
{
"name": "npr_bumps",
"version": "0.0.0",
"description": "Small script to save npr-interlude songs onto a spotify playlist",
"repository": {
"type": "git",
"url": "git://github.com/slicebo123/npr_bumps.git"
},
"keywords": [
"npr",
"spotify"
],
"author": "Sean Miller",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/slicebo123/npr_bumps/issues"
},
"homepage": "https://github.com/slicebo123/npr_bumps",
"devDependencies": {
"browserify": "^8.0.1",
"lodash": "^2.4.1",
"material-design-fonticons": "^1.0.0",
"material-ui": "seanders/material-ui#35b424c26a006d48673b8829256ceec11581029d",
"react": "0.12.2",
"react-tap-event-plugin": "^0.1.3",
"reactify": "0.17.1",
"watchify": "^2.2.1"
},
"scripts": {
"bundle": "browserify -t reactify app/assets/javascripts/index.js -o app/assets/javascripts/bundle.js",
"watch-js": "watchify -t reactify app/assets/javascripts/index.js -o app/assets/javascripts/bundle.js",
"start-all": "npm run watch-js & rails s",
"start": "npm run watch-js"
}
}