-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.33 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "rachio_api",
"version": "0.0.1",
"description": "simple integration with rachio public api",
"main": "app.js",
"scripts": {
"preinstall": "npm install -g http-server concurrently watchify watch-less",
"test": "echo \"Error: no test specified\" && exit 1",
"watchjs": "watchify app.js -o public/js/bundle.js --debug --verbose --poll",
"watchless": "watch-less -d src/css -r public/css -e .css",
"build": "concurrent \"npm start\" \"npm run watchjs\" \"npm run watchless\"",
"start": "http-server -p 3000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/courington/rachio_api.git"
},
"author": "courington",
"license": "ISC",
"bugs": {
"url": "https://github.com/courington/rachio_api/issues"
},
"homepage": "https://github.com/courington/rachio_api#readme",
"devDependencies": {
"browserify": "^12.0.1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babelify": "^7.2.0"
},
"dependencies": {
"backbone": "^1.2.3",
"jquery": "^2.2.0",
"lodash": "^3.10.1",
"moment": "^2.11.1",
"react": "^0.14.6",
"react-dom": "^0.14.6"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"react",
"es2015"
]
}
]
]
}
}