forked from troutowicz/geoshare
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.62 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "geoshare",
"version": "1.0.0",
"description": "View tag filtered Instagram images in real time",
"engines": {
"iojs": "1.5.1"
},
"main": "app/app.js",
"scripts": {
"build": "webpack --config config/webpack/production.config.js --progress --profile --colors",
"dev-server": "webpack --config config/webpack/prerender.config.js & webpack-dev-server --config config/webpack/devServer.config.js --progress --colors --hot --inline",
"dev": "babel-node --ignore 'node_modules','build','app' config/serverDev",
"lint": "eslint --ext .js,.jsx app/ config/ lib/ test/ server.js",
"prod": "babel-node --ignore 'node_modules','build','app' config/serverProd",
"test": "npm run lint && npm run test-jsx && npm run test-js",
"test-js": "mocha ./test/lib ./test/app/actions ./test/app/stores --compilers js:babel/register",
"test-jsx": "mochify node_modules/babel/polyfill ./test/app/components/* --reporter spec --transform [ babelify --stage 1 --ignore 'node_modules'] --extension .jsx"
},
"repository": {
"type": "git",
"url": "https://github.com/troutowicz/geoshare.git"
},
"author": "Tim Routowicz",
"license": "MIT",
"bugs": {
"url": "https://github.com/troutowicz/geoshare/issues"
},
"homepage": "https://github.com/troutowicz/geoshare",
"dependencies": {
"alt": "0.16.10",
"autoprefixer-loader": "^2.0.0",
"babel": "^5.6.14",
"babel-loader": "^5.2.2",
"config": "^1.14.0",
"css-loader": "^0.15.1",
"extract-text-webpack-plugin": "^0.8.2",
"good": "^6.2.0",
"good-console": "^5.0.2",
"hapi-auth-cookie": "^3.0.1",
"hapi-shutdown": "^0.1.1",
"html-loader": "^0.3.0",
"instagram-node": "^0.5.7",
"iso": "^4.1.0",
"json5": "^0.4.0",
"leaflet": "^0.7.3",
"leaflet.markercluster": "Leaflet/Leaflet.markercluster#v0.4.0-hotfix.1",
"less": "^2.5.1",
"less-loader": "^2.2.0",
"material-ui": "0.9.0",
"react": "^0.13.3",
"react-hot-loader": "^1.2.7",
"react-leaflet": "^0.6.2",
"react-tap-event-plugin": "^0.1.7",
"redis": "^0.12.1",
"socket.io": "^1.3.5",
"socket.io-client": "^1.3.5",
"stats-webpack-plugin": "0.1.2",
"style-loader": "^0.12.3",
"url-loader": "^0.5.6",
"webpack": "^1.10.0"
},
"devDependencies": {
"babel-eslint": "^3.1.20",
"babelify": "^6.1.2",
"chai": "^3.0.0",
"eslint": "^0.24.0",
"eslint-plugin-react": "^2.6.3",
"mocha": "^2.2.5",
"mochify": "^2.10.0",
"phantomjs": "^1.9.17",
"react-tools": "^0.13.3",
"reactify": "^1.1.1",
"rewire": "^2.3.4",
"sinon": "^1.15.4",
"webpack-dev-server": "^1.10.1"
}
}