-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·112 lines (112 loc) · 3.07 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
{
"name": "headlines",
"version": "1.1.0",
"description": "A news headlines app built with React",
"main": "server.js",
"scripts": {
"build": "webpack",
"postinstall": "npm run build",
"start": "babel-node server.js",
"start:dev": "nodemon -e js --exec babel-node -- ./server.js",
"test": "karma start"
},
"jest": {
"setupFiles": [
"<rootDir>/mock/localStorage.js"
],
"modulePaths": [
"/shared/vendor/modules"
],
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules",
"bower_components",
"shared"
],
"moduleNameMapper": {
"^react(.*)$": "<rootDir>/vendor/react-master$1",
"^config$": "<rootDir>/configs/app-config.js",
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js",
"\\.(gif|ttf|eot|svg)$": "<rootDir>/__mocks__/fileMock.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/codejockie/headlines.git"
},
"keywords": [
"headline",
"news"
],
"author": "John Kennedy",
"license": "MIT",
"bugs": {
"url": "https://github.com/codejockie/headlines/issues"
},
"homepage": "https://github.com/codejockie/headlines#readme",
"dependencies": {
"axios": "^0.16.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-airbnb": "^2.2.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^0.28.3",
"express": "^4.15.3",
"file-loader": "^1.1.5",
"firebase": "^4.0.0",
"flux": "^3.1.2",
"font-awesome": "^4.7.0",
"moment": "^2.18.1",
"node-env-file": "^0.1.8",
"node-sass": "^4.5.3",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-alert": "^2.1.2",
"react-dom": "^15.5.4",
"react-router": "^3.0.0",
"react-share": "^1.14.1",
"sass-loader": "^6.0.6",
"script-loader": "^0.7.0",
"semantic-ui-react": "^0.68.4",
"style-loader": "^0.18.1",
"uglify-es": "github:mishoo/UglifyJS2#harmony",
"webpack": "^2.7.0",
"webpack-dev-middleware": "^1.12.0",
"webpack-hot-middleware": "^2.19.1"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-polyfill": "^6.23.0",
"coveralls": "^2.13.1",
"enzyme": "^2.8.2",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"expect": "^1.20.2",
"jest": "^20.0.4",
"karma": "^1.7.0",
"karma-chai-plugins": "^0.9.0",
"karma-chrome-launcher": "^2.1.1",
"karma-coverage": "^1.1.1",
"karma-coveralls": "^1.1.2",
"karma-firefox-launcher": "^1.0.1",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.3",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.3",
"mocha": "^3.4.2",
"react-addons-test-utils": "^15.5.1",
"react-test-renderer": "^15.5.4",
"sinon": "^2.3.4"
}
}