forked from tildedave/react-router-lightboxes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 966 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
{
"name": "react-router-lightboxes",
"version": "0.0.1",
"description": "Lightbox Demo with react-router",
"main": "index.js",
"scripts": {
"watch": "watchify -t reactify main.js -o public/bundle.js -v",
"build": "browserify -t reactify main.js -o public/bundle.js",
"start": "npm run watch & nodemon server.js"
},
"repository": {
"type": "git",
"url": "[email protected]:tildedave/react-router-lightboxes.git"
},
"author": "Dave King",
"license": "MIT",
"bugs": {
"url": "https://github.com/tildedave/react-router-lightboxes/issues"
},
"homepage": "https://github.com/tildedave/react-router-lightboxes",
"dependencies": {
"ejs": "^2.2.4",
"express": "^4.11.2",
"react": "^0.12.2",
"react-router": "^0.11.6"
},
"devDependencies": {
"browserify": "^8.1.3",
"nodemon": "^1.3.6",
"react": "^0.12.2",
"react-router": "^0.11.6",
"reactify": "^1.0.0",
"watchify": "^2.3.0"
}
}