-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.75 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
{
"name": "hn-react",
"version": "0.0.0",
"description": "This is a port of the Hacker News Client writter in AngularJS. [https://coderwall.com/p/0pfmvq](https://coderwall.com/p/0pfmvq). Source code of the angular port can be found at [https://github.com/codealpha/hn-angular](https://github.com/codealpha/hn-angular).",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "webpack-dev-server --hot --inline --progress --profile --colors --config webpack.config.dev.js",
"build": "npm run clean && webpack --config webpack.config.dev.js --progress --profile --colors",
"clean": "rimraf build"
},
"author": "",
"jest": {
"scriptPreprocessor": "preprocessor.js",
"unmockedModulePathPatterns": [
"node_modules/react"
]
},
"license": "ISC",
"devDependencies": {
"@extjs/reactor-babel-plugin": "^0.2.0",
"@extjs/reactor-webpack-plugin": "^0.2.6",
"babel-cli": "^6.18.0",
"babel-loader": "^6.2.10",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"babelify": "^7.3.0",
"css-loader": "^0.26.1",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.28.0",
"jquery": "^2.1.1",
"react": "^15.4.2",
"style-loader": "^0.13.1",
"webpack-dev-server": "^2.4.2"
},
"dependencies": {
"@extjs/reactor": "^0.2.5",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"webpack": "^2.2.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prabirshrestha/hn-react.git"
},
"bugs": {
"url": "https://github.com/prabirshrestha/hn-react/issues"
},
"homepage": "https://github.com/prabirshrestha/hn-react#readme"
}