-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathpackage.json
120 lines (120 loc) · 3.82 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "github-explorer",
"version": "0.1.26",
"description": "Progressive Web Apps experiment",
"main": "src/app.jsx",
"scripts": {
"build": "NODE_ENV=production npm run webpack && npm run service-worker && npm run root-assets",
"clean": "rimraf $npm_package_config_buildDir/*",
"env": "env",
"lint": "eslint --ext .jsx ./src && echo No linting errors.",
"prebuild": "npm run clean",
"pretest": "bower install && npm install && npm run lint",
"pretest-travis": "npm install && npm run lint",
"start": "NODE_ENV=development node dev-server ./webpack/config",
"test": "NODE_ENV=test karma start",
"test-travis": "NODE_ENV=test karma start --single-run",
"webpack": "webpack --colors --progress --config ./webpack/config",
"publish": "npm version patch && npm run build && cd build && git add --all && git commit -m \"Release at $(date)\" && git push",
"service-worker": "sw-precache --config=sw-precache-config.json --verbose --sw-file=build/sw.js",
"root-assets": "cp root-assets/* build/"
},
"repository": {
"type": "[email protected]:trungdq88/github-explorer.git",
"url": "https://github.com/trungdq88/github-explorer"
},
"author": "Trung Dinh Quang",
"license": "ISC",
"bugs": {
"url": "https://github.com/trungdq88/github-explorer/issues"
},
"config": {
"buildDir": "./build",
"devHost": "0.0.0.0",
"devPort": 8763
},
"homepage": "https://github.com/trungdq88/github-explorer",
"babel": {
"presets": [
"es2015",
"react"
]
},
"devDependencies": {
"autoprefixer": "^6.0.3",
"babel-core": "^6.10.4",
"babel-eslint": "^6.1.0",
"babel-loader": "^6.1.0",
"babel-plugin-rewire": "^0.1.8",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.1.4",
"babel-runtime": "^6.9.2",
"chai": "^3.4.1",
"classnames": "^2.1.5",
"css-loader": "^0.23.1",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.9.2",
"eslint-plugin-jsx-a11y": "^1.5.3",
"eslint-plugin-react": "^5.2.2",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"github-colors": "^2.2.5",
"glob": "^7.0.5",
"imports-loader": "^0.6.4",
"istanbul-instrumenter-loader": "^0.2.0",
"karma": "^0.13.15",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^1.0.1",
"karma-cli": "^1.0.0",
"karma-coverage": "^1.0.0",
"karma-coveralls": "^1.1.2",
"karma-mocha": "^1.0.1",
"karma-mocha-reporter": "^2.0.4",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sinon": "^1.0.4",
"karma-source-map-support": "^1.0.0",
"karma-sourcemap-loader": "^0.3.5",
"karma-webpack": "^1.5.1",
"less": "^2.7.1",
"less-loader": "^2.2.1",
"lodash": "^4.13.1",
"mocha": "^2.5.3",
"mocha-loader": "^0.7.1",
"opn": "^4.0.2",
"phantomjs": "^2.1.7",
"phantomjs-prebuilt": "^2.1.7",
"postcss-loader": "^0.9.1",
"react": "^15.1.0",
"react-addons-test-utils": "^15.1.0",
"react-dom": "^15.1.0",
"react-hot-loader": "^1.3.0",
"rimraf": "^2.4.3",
"script-loader": "^0.7.0",
"sinon": "^1.15.4",
"style-loader": "^0.13.0",
"sw-precache": "^3.2.0",
"template-html-loader": "0.0.3",
"url-loader": "^0.5.6",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.12.0"
},
"dependencies": {
"classname": "0.0.0",
"filesize": "^3.3.0",
"github-colors": "^2.2.6",
"github-markdown-css": "^2.3.0",
"js-base64": "^2.1.9",
"json-loader": "^0.5.4",
"moment": "^2.14.1",
"react-addons-css-transition-group": "^15.1.0",
"react-markdown": "^2.3.0",
"react-router": "^2.5.1",
"react-router-page-transition": "3.0.1",
"rimraf": "^2.5.2",
"rx": "^4.1.0",
"sw-precache": "^4.3.0",
"whatwg-fetch": "^1.0.0"
}
}