-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
122 lines (122 loc) · 3.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "pilgrim",
"version": "0.1.0",
"description": "Bookmarklet + web crawler",
"main": "index.js",
"engines": {
"node": ">=5.1.1",
"npm": "3.x.x"
},
"scripts": {
"start": "NODE_ENV=production nf start",
"build": "NODE_ENV=production webpack --config webpack.production.config.js --progress --colors -p",
"postinstall": "if [ -n \"$npm_config_production\" ]; then npm run build; fi",
"dev": "foreman start --procfile Procfile.dev",
"start-server": "nf run node build/server.js",
"build-server": "webpack --config webpack.server.config.js --progress --colors -p",
"build-assets": "webpack --config webpack.production.config.js --progress --colors -p",
"test": "npm test"
},
"keywords": [
"bookmarklet",
"webcrawler",
"are.na",
"readability"
],
"author": "Are.na",
"license": "MIT",
"dependencies": {
"arena-passport": "git://github.com/arenahq/arena-passport.git",
"assets-webpack-plugin": "^3.2.0",
"axis": "^0.5.2",
"babel-core": "^6.3.21",
"babel-loader": "^6.2.0",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-register": "^6.3.13",
"babel-runtime": "^6.3.19",
"bluebird-q": "^1.0.3",
"body-parser": "^1.14.2",
"classnames": "^2.2.1",
"clean-webpack-plugin": "^0.1.5",
"compression": "^1.6.0",
"cookie-parser": "^1.4.1",
"cookie-session": "^1.2.0",
"cors": "^2.7.1",
"css-loader": "^0.23.1",
"d3": "^3.5.16",
"embed-video": "^1.2.0",
"express": "^4.13.3",
"extract-text-webpack-plugin": "^1.0.0",
"foreman": "^1.4.1",
"html-to-react": "^0.1.2",
"jquery": "^2.2.2",
"jsdom": "^8.1.0",
"json-loader": "^0.5.4",
"kue": "^0.10.5",
"lodash": "^4.0.0",
"memjs": "^0.9.0",
"morgan": "^1.6.1",
"newrelic": "^1.25.5",
"nib": "^1.1.0",
"node-readability": "broskoski/readability",
"qs": "^6.1.0",
"randomstring": "^1.1.4",
"react": "^0.14.5",
"react-dom": "0.14.0",
"react-faux-dom": "^2.4.0",
"react-redux": "^4.0.0",
"react-swipeable": "^3.1.0",
"redis": "2.4.2",
"redux": "^3.0.0",
"redux-form": "^5.0.1",
"redux-thunk": "^1.0.3",
"reselect": "^2.0.3",
"rupture": "^0.6.1",
"serve-static": "^1.10.0",
"style-loader": "^0.13.0",
"stylus": "^0.52.4",
"stylus-loader": "^1.4.2",
"superagent": "^1.6.1",
"underscore.string": "^3.2.2",
"url-join": "0.0.1",
"validator": "^4.4.0",
"webpack": "^1.11.0",
"webpack-dev-middleware": "^1.2.0",
"webpack-hot-middleware": "^2.2.0",
"webpack-notifier": "^1.2.1",
"webpack-sources": "^0.1.0"
},
"optionalDependencies": {
"fsevents": "*"
},
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-eslint": "^4.1.6",
"babel-plugin-react-transform": "^2.0.0-beta1",
"babel-plugin-syntax-async-functions": "^6.3.13",
"babel-plugin-transform-regenerator": "^6.3.18",
"babel-plugin-transform-runtime": "^6.3.13",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^2.0.0",
"eslint-loader": "^1.1.1",
"eslint-plugin-react": "^3.11.3",
"faker": "^3.0.1",
"json-loader": "^0.5.4",
"mocha": "^2.3.4",
"react-addons-test-utils": "^0.14.6",
"react-transform-catch-errors": "^1.0.0",
"react-transform-hmr": "1.0.0",
"redbox-react": "^1.2.0",
"redux-devtools": "^2.1.5",
"sinon": "^1.17.2",
"stylus": "^0.54.5",
"stylus-loader": "^2.4.0",
"teaspoon": "^6.0.0",
"webpack": "^1.14.0",
"webpack-dev-middleware": "^1.2.0",
"webpack-hot-middleware": "^2.2.0",
"webpack-notifier": "^1.2.1"
}
}