-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.27 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.27 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "github-user-search",
"version": "3.0.0",
"main": "index.js",
"repository": "git@github.com:simonsmith/github-user-search.git",
"author": "Simon Smith <simonsmith@users.noreply.github.com>",
"license": "MIT",
"scripts": {
"build": "NODE_ENV=production webpack --config webpack/prod.config.js",
"eslint": "eslint src webpack",
"posttest": "npm run eslint",
"start": "NODE_ENV=development webpack-dev-server --config webpack/dev.config.js",
"test": "jest --runInBand",
"deploy": "npm run build && gh-pages -d build"
},
"jest": {
"testRegex": "test/.*\\.spec\\.js$",
"moduleNameMapper": {
"\\.(svg)$": "<rootDir>/test/__mocks__/svgMock.js",
"\\.(css)$": "<rootDir>/test/__mocks__/cssMock.js"
},
"setupFiles": [
"<rootDir>/test/raf-shim.js",
"<rootDir>/test/setup.js"
],
"transform": {
".*": "<rootDir>/node_modules/babel-jest"
}
},
"dependencies": {
"aphrodite": "^1.2.0",
"axios": "^0.16.2",
"classnames": "^2.2.5",
"date-fns": "^1.28.2",
"lodash": "^4.17.4",
"normalizr": "^3.1.0",
"parse-link-header": "^1.0.1",
"query-string": "^5.0.0",
"react": "^16.0.0",
"react-document-title": "^2.0.2",
"react-dom": "^16.0.0",
"react-redux": "^5.0.2",
"react-router-dom": "^4.0.0",
"redux": "^3.6.0",
"redux-logger": "^3.0.0",
"redux-saga": "^0.15.6",
"suitcss-base": "^4.0.0",
"suitcss-components-grid": "^3.0.3",
"suitcss-utils-display": "^1.0.2",
"suitcss-utils-flex": "^2.0.0",
"suitcss-utils-size": "^2.0.0"
},
"devDependencies": {
"autoprefixer": "^7.1.4",
"babel-core": "^6.22.1",
"babel-eslint": "^8.0.1",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.2",
"babel-plugin-flow-react-proptypes": "^5.2.0",
"babel-plugin-module-resolver": "^2.5.0",
"babel-plugin-transform-class-properties": "^6.22.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-preset-env": "^1.1.8",
"babel-preset-latest": "^6.22.0",
"babel-preset-react": "^6.22.0",
"clean-webpack-plugin": "^0.1.15",
"css-loader": "^0.28.7",
"enzyme": "^3.0.0",
"enzyme-adapter-react-16": "^1.0.0",
"eslint": "^4.8.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-import-resolver-babel-module": "^3.0.0",
"eslint-plugin-flowtype": "^2.30.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-lodash-fp": "^2.1.3",
"eslint-plugin-react": "^7.4.0",
"extract-text-webpack-plugin": "^3.0.0",
"flow-bin": "^0.56.0",
"flux-standard-action": "^1.2.0",
"gh-pages": "^1.0.0",
"html-webpack-plugin": "^2.28.0",
"jest": "^21.2.1",
"mockdate": "^2.0.1",
"postcss-custom-media": "^6.0.0",
"postcss-custom-properties": "^6.1.0",
"postcss-import": "^11.0.0",
"postcss-loader": "^2.0.6",
"prop-types": "^15.6.0",
"react-addons-test-utils": "^15.4.2",
"react-svg-loader": "^1.1.1",
"react-test-renderer": "^16.0.0",
"redux-mock-store": "^1.2.2",
"style-loader": "^0.18.2",
"uglify-js": "^3.1.3",
"uglifyjs-webpack-plugin": "^0.4.6",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.4.0",
"webpack-merge": "^4.0.0"
}
}