-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
49 lines (49 loc) · 1.45 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
{
"name": "hackernewsviewer",
"version": "0.3.1",
"description": "Simple HackerNews viewer",
"main": "app.js",
"scripts": {
"build": "webpack -g ; cp index.html dist/index.html ; cp css/app.css dist/minimal_viewer.css",
"lint": "eslint js",
"get-version": "echo $npm_package_version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MiguelBel/HackerNewsViewer.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/MiguelBel/HackerNewsViewer/issues"
},
"homepage": "https://github.com/MiguelBel/HackerNewsViewer#readme",
"dependencies": {
"babel-core": "^6.18.0",
"babel-loader": "^6.2.7",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"express": "^4.14.0",
"postal": "^2.0.4",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"webpack": "^1.13.3",
"webpack-dev-middleware": "^1.8.4",
"webpack-hot-middleware": "^2.13.2",
"whatwg-fetch": "^2.0.0",
"jmespath": "0.15.0"
},
"devDependencies": {
"babel-preset-stage-0": "^6.16.0",
"eslint": "^3.11.0",
"eslint-config-airbnb": "^13.0.0",
"eslint-config-standard": "^6.2.1",
"eslint-config-standard-jsx": "^3.2.0",
"eslint-config-standard-react": "^4.2.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-react": "^6.7.1",
"eslint-plugin-standard": "^2.0.1"
}
}