This repository has been archived by the owner on Jun 9, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
96 lines (96 loc) · 2.83 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
{
"name": "reddio",
"version": "0.1.0",
"description": "Reddit powered internet radio",
"main": "index.js",
"scripts": {
"postinstall": "webdriver-manager update",
"build": "jake build",
"start": "webpack-dev-server --config webpack.watch.config",
"watch": "webapck-dev-server --inline --hot --config webpack.watch.config",
"storybook": "start-storybook -p 9001 -c tools/storybook",
"lint": "npm run lint:js && npm run lint:sass",
"lint:js": "eslint .",
"lint:sass": "sass-lint --verbose",
"test": "karma start --single-run",
"test-watch": "karma start",
"test-e2e": "protractor protractor.conf.js",
"deploy": "jake deploy",
"clean": "rimraf dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yanglinz/reddio.git"
},
"author": "Yanglin Zhao",
"license": "ISC",
"bugs": {
"url": "https://github.com/yanglinz/reddio/issues"
},
"homepage": "https://github.com/yanglinz/reddio#readme",
"dependencies": {
"analytics.js-loader": "2.1.2",
"babel-polyfill": "6.16.0",
"classnames": "2.2.5",
"invariant": "2.2.1",
"lodash": "4.16.4",
"normalize.css": "4.2.0",
"open-iconic": "1.1.1",
"raven-js": "3.7.0",
"react": "15.3.2",
"react-dom": "15.3.2",
"react-redux": "4.4.5",
"react-router": "2.8.1",
"react-router-redux": "4.0.6",
"redux": "3.6.0",
"redux-logger": "2.6.1",
"redux-observable": "0.12.1",
"route-pattern": "0.0.6",
"rxjs": "5.0.0-rc.2",
"svg-inline-react": "1.0.2",
"whatwg-fetch": "1.0.0"
},
"devDependencies": {
"@kadira/storybook": "2.20.1",
"babel-core": "6.17.0",
"babel-eslint": "7.0.0",
"babel-loader": "6.2.5",
"babel-plugin-lodash": "3.2.9",
"babel-preset-es2015": "6.16.0",
"babel-preset-react": "6.11.1",
"chai": "3.5.0",
"css-loader": "0.25.0",
"dotenv": "2.0.0",
"eslint": "3.10.0",
"eslint-config-airbnb": "13.0.0",
"eslint-import-resolver-webpack": "0.7.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-react": "6.6.0",
"extract-text-webpack-plugin": "1.0.1",
"file-loader": "0.9.0",
"firebase-tools": "3.0.8",
"git-rev-sync": "1.7.1",
"html-webpack-plugin": "2.22.0",
"jake": "8.0.14",
"karma": "1.3.0",
"karma-chrome-launcher": "2.0.0",
"karma-firefox-launcher": "1.0.0",
"karma-mocha": "1.2.0",
"karma-mocha-reporter": "2.2.0",
"karma-webpack": "1.8.0",
"mocha": "3.1.0",
"node-sass": "3.10.1",
"protractor": "4.0.9",
"react-hot-loader": "3.0.0-beta.5",
"rimraf": "2.5.4",
"sass-lint": "^1.10.2",
"sass-loader": "4.0.2",
"style-loader": "0.13.1",
"svg-inline-loader": "0.7.1",
"url-loader": "0.5.7",
"webpack": "1.13.2",
"webpack-dev-server": "1.16.2",
"webpack-merge": "0.14.1"
}
}