-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.48 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.48 KB
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
{
"name": "github-searcher",
"version": "1.0.0",
"description": "A simple GitHub searcher using GitHub API",
"main": "server.js",
"directories": {
"test": "test"
},
"scripts": {
"prebuild": "npm run test && npm run build:clean && mkdir dist && npm run copy",
"build:clean": "rimraf dist",
"copy": "cp favicon.ico dist/favicon.ico",
"build": "cross-env NODE_ENV=production webpack --config webpack.config.prod.js --color -p",
"postbuild": "babel server.js -o server.es5.js",
"test": "cross-env NODE_ENV=test babel-node test/index.js | tap-spec ",
"start": "cross-env NODE_ENV=dev babel-node server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/oopDaniel/Github-searcher"
},
"keywords": [
"GitHub-searcher",
"GitHub"
],
"author": "Daniel Chiang",
"license": "ISC",
"dependencies": {
"babel-regenerator-runtime": "^6.5.0",
"classnames": "^2.2.5",
"express": "^4.14.0",
"helmet": "^3.4.0",
"isomorphic-fetch": "^2.2.1",
"morgan": "^1.7.0",
"normalize.css": "^5.0.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-markdown": "^2.4.4",
"react-redux": "^5.0.2",
"react-router": "^3.0.2",
"react-router-redux": "^4.0.7",
"redux": "^3.6.0",
"redux-logger": "^2.7.4",
"redux-saga": "^0.14.3"
},
"devDependencies": {
"autoprefixer": "^6.6.1",
"babel": "^6.5.2",
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.16.0",
"cross-env": "^3.1.4",
"css-loader": "^0.26.1",
"cssnano": "^3.10.0",
"eslint": "^3.13.1",
"eslint-config-airbnb": "^14.0.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"eventsource-polyfill": "^0.9.6",
"file-loader": "^0.9.0",
"json-loader": "^0.5.4",
"nodemon": "^1.11.0",
"postcss": "^5.2.10",
"postcss-import": "^9.1.0",
"postcss-loader": "^1.2.2",
"precss": "^1.4.0",
"react-transform-hmr": "^1.0.4",
"rimraf": "^2.5.4",
"style-loader": "^0.13.1",
"tap-spec": "^4.1.1",
"tape": "^4.6.3",
"url-loader": "^0.5.7",
"webpack": "^1.14.0",
"webpack-dev-middleware": "^1.9.0",
"webpack-hot-middleware": "^2.15.0"
}
}