This repository has been archived by the owner on Jan 30, 2018. It is now read-only.
forked from madbook/reddit-mobile
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
75 lines (75 loc) · 2.53 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
{
"name": "r-project-blackbird",
"version": "0.0.1",
"description": "the newer, better, faster, stronger reddit-mobile",
"author": "reddit <schwers@reddit.com>",
"license": "MIT",
"scripts": {
"start": "NODE_ENV=production npm run server",
"build": "npm run fonts && NODE_ENV=production blueprints -p",
"server": "NODE_ENV=production node ./bin/ProductionServer.js",
"watch": "npm run fonts && NODE_ENV=development blueprints -w",
"dev-build": "NODE_ENV=development blueprints",
"dev-server": "NODE_ENV=development nodemon ./bin/Server.js",
"analyze": "ANALYZE_BUILD=true npm run build",
"lint": "eslint src --ext .js,.jsx",
"lint-errors-only": "eslint src --ext .js,.jsx --quiet",
"lint-fixup": "eslint src --ext .js,.jsx --fix",
"lint-unstaged": "LIST=`git diff-index --name-only HEAD | grep -f *.js | grep -v json;`; if [ \"$LIST\" ]; then eslint $LIST; fi",
"lint-diff": "LIST=`git diff-index --name-only 2X | grep -f *.js | grep -v json;`; if [ \"$LIST\" ]; then eslint $LIST; fi",
"fonts": "webfonts",
"test": "blueprints -t",
"test:watch": "npm run test -- -w"
},
"dependencies": {
"@r/build": "~0.14.0",
"@r/flags": "^1.5.0",
"@r/middleware": "~0.8.1",
"@r/private": "1.1.0",
"@r/widgets": "0.2.2",
"Base64": "1.0.0",
"autoprefixer": "6.3.6",
"babel-polyfill": "^6.7.4",
"branch-sdk": "^2.25.2",
"cluster": "^0.7.7",
"crypto-js": "3.1.8",
"dashjs": "^2.4.1",
"event-tracker": "git://github.com/reddit/event-tracker.git#28bc2dd9ce3b80540fdf189e1b003f8264cd0d08",
"js-cookie": "^2.1.1",
"json-stable-stringify": "^1.0.1",
"koa": "2.0.0",
"koa-bodyparser": "3.0.0",
"koa-router": "7.0.1",
"koa-static": "3.0.0",
"lodash": "4.12.0",
"nodemon": "^1.9.1",
"raf": "^3.2.0",
"raven": "^1.1.1",
"raven-js": "^3.7.0",
"react": "15.4.0",
"react-dom": "15.4.0",
"react-motion": "0.4.4",
"react-redux": "4.4.5",
"redux": "3.5.2",
"reselect": "2.5.1",
"set-cookie-parser": "^2.0.0",
"source-map-support": "^0.4.0",
"statsd-client": "^0.2.2",
"superagent": "1.8.3"
},
"devDependencies": {
"babel-core": "^6.8.0",
"babel-eslint": "^6.0.4",
"chai": "3.5.0",
"chai-enzyme": "0.4.2",
"enzyme": "2.2.0",
"eslint": "^3.13.1",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-react": "^5.1.1",
"mocha": "2.4.5",
"react-addons-test-utils": "15.5.0",
"sinon": "1.17.3",
"sinon-chai": "2.8.0",
"webpack-bundle-analyzer": "^2.2.1"
}
}