-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.77 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
{
"name": "github-user-test",
"version": "1.0.0",
"description": "Search Github Repository Test",
"scripts": {
"test": "nyc ava",
"test:watch": "ava --watch",
"build": "rimraf build && webpack",
"start": "webpack-dev-server"
},
"ava": {
"files": "app/components/views/**/*.spec.js",
"source": "app/components/views/**/*.js",
"require": "babel-register",
"babel": "inherit",
"failFast": true
},
"nyc": {
"include": "app/components/**/*.js",
"exclude": "**/*.spec.js"
},
"license": "MIT",
"devDependencies": {
"ava": "^0.16.0",
"babel-core": "^6.11.4",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-plugin-istanbul": "^2.0.1",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.16.3",
"css-loader": "^0.23.1",
"enzyme": "^2.4.1",
"eslint": "^3.1.1",
"eslint-loader": "^1.4.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.22.0",
"json-loader": "^0.5.4",
"nyc": "^8.3.1",
"react-addons-test-utils": "^15.3.2",
"redux-ava": "^2.1.0",
"redux-logger": "^2.7.0",
"rimraf": "^2.5.4",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1",
"webpack-merge": "^0.14.0",
"webpack-validator": "^2.2.3"
},
"dependencies": {
"isomorphic-fetch": "^2.2.1",
"moment": "^2.15.1",
"react": "^15.2.1",
"react-dom": "^15.2.1",
"react-loader-advanced": "^1.4.1",
"react-pager": "^1.1.4",
"react-redux": "^4.4.5",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0"
}
}