-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
88 lines (88 loc) · 2.58 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
{
"name": "rplayr",
"version": "0.0.1",
"description": "A React app to parse and play media from subreddits and comment threads.",
"scripts": {
"clean": "rimraf dist data",
"start": "node server.js",
"fetch-playlists": "babel-node scripts/fetch-playlists.js",
"lint": "npm run lint:js; npm run lint:css",
"lint:css": "scss-lint src",
"lint:js": "standard --verbose | snazzy",
"test": "NODE_ENV=production mocha --require ignore-styles test --compilers js:babel-core/register",
"prebuild": "npm run clean && npm run fetch-playlists",
"build": "NODE_ENV=production webpack --config webpack.config.prod.js",
"postbuild": "cp index.html dist",
"deploy": "lftp -u $FTP_USER,$FTP_PASS $FTP_SITE -e 'mirror -c -R dist ~; exit'"
},
"repository": {
"type": "git",
"url": "https://github.com/cookpete/rplayr.git"
},
"keywords": [
"react",
"rplayr",
"reddit",
"music",
"player",
"playlist",
"media",
"subreddit",
"comment",
"threads",
"youtube",
"soundcloud"
],
"author": "Pete Cook <[email protected]> (http://github.com/cookpete)",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/cookpete/rplayr/issues"
},
"homepage": "https://github.com/cookpete/rplayr",
"devDependencies": {
"autoprefixer": "^6.3.1",
"babel-cli": "^6.4.5",
"babel-core": "^6.4.0",
"babel-eslint": "^5.0.0-beta6",
"babel-loader": "^6.2.1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-react-hmre": "^1.0.1",
"babel-preset-stage-0": "^6.3.13",
"chai": "^3.4.1",
"css-loader": "^0.23.1",
"express": "^4.13.3",
"extract-text-webpack-plugin": "^1.0.1",
"ignore-styles": "^1.2.0",
"isomorphic-fetch": "^2.2.1",
"json-loader": "^0.5.4",
"mocha": "^2.3.4",
"node-sass": "^3.4.2",
"postcss-loader": "^0.8.0",
"react-addons-test-utils": "^0.14.6",
"rimraf": "^2.5.0",
"sass-loader": "^3.1.2",
"snazzy": "^3.0.0",
"standard": "^6.0.7",
"style-loader": "^0.13.0",
"webpack": "^1.12.11",
"webpack-dev-middleware": "^1.4.0",
"webpack-hot-middleware": "^2.6.0"
},
"dependencies": {
"babel-polyfill": "^6.5.0",
"fetch-reddit": "^0.1.0",
"lscache": "^1.0.5",
"normalize.css": "^3.0.3",
"query-string": "^3.0.0",
"randomcolor": "git+https://github.com/CookPete/randomColor.git",
"react": "^0.14.6",
"react-dom": "^0.14.6",
"react-player": "^0.5.3",
"react-router": "^2.0.0-rc5",
"react-timeago": "^2.2.1"
},
"standard": {
"parser": "babel-eslint"
}
}