-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.73 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
{
"name": "hacker-news-mobile",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node boot.js",
"watch": "watchy -w . -i 'node_modules|assets|cache.json' -- npm run build",
"uglify": "uglifyjs assets/build/bundle.js --compress > assets/build/bundle.js.tmp; mv assets/build/bundle.js.tmp assets/build/bundle.js",
"digest": "./scripts/asset-map.js assets/build/bundle.*",
"build": "browserify-assets -v -t babelify --bundlename ./assets/build/bundle --cachefile ./assets/build/cache.json ./client.js"
},
"author": "James Friend <james@jsdf.co> (http://jsdf.co/)",
"license": "ISC",
"dependencies": {
"babel": "^4.6.3",
"babelify": "^5.0.3",
"bluebird": "^2.9.13",
"browserify-assets": "~1.5.1",
"consolidate": "^0.11.0",
"express": "^4.11.1",
"fingerblast": "^1.1.1",
"firebase": "^2.1.1",
"hogan.js": "^3.0.2",
"moment": "^2.9.0",
"node-fetch": "^1.0.4",
"object.assign": "^1.1.1",
"promise-map": "^1.0.1",
"react": "^0.13.3",
"react-ratchet": "^0.4.1",
"react-router": "^0.13.3",
"react-tap-event-plugin": "^0.1.7",
"reactfire": "^0.4.0",
"through2": "^0.6.3",
"underscore": "^1.7.0",
"url-join": "0.0.1",
"whatwg-fetch": "^0.7.0"
},
"browser": {
"./config/environment.js": "./config/browser-environment.js",
"./util/fetch.js": "./util/browser-fetch.js"
},
"style": [
"assets/vendor/ratchet/css/ratchet.css",
"assets/vendor/ratchet/css/ratchet-theme-ios.css",
"components/app.css"
],
"transforms": [
"./server/util/css-path-transform"
],
"devDependencies": {
"uglify-js": "~2.4.16",
"watchy": "^0.5.8"
}
}