This repository has been archived by the owner on Jan 5, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.47 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
{
"private": true,
"scripts": {
"start": "cross-env DEBUG=app:* node server.js",
"lint:js": "eslint ./",
"lint:css": "stylelint src/styles/**/*.scss --syntax scss",
"lint": "npm run lint:js && npm run lint:css",
"test": "cross-env NODE_ENV=test NODE_PATH=src ava",
"prebuild": "npm run lint && npm test && rimraf dist",
"build": "cross-env NODE_ENV=production webpack"
},
"ava": {
"babel": "inherit",
"require": [
"babel-polyfill",
"babel-register",
"ignore-styles",
"./test/helpers/setup"
]
},
"devDependencies": {
"autoprefixer": "^6.3.3",
"ava": "^0.14.0",
"babel-core": "^6.9.0",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"babel-register": "^6.9.0",
"cross-env": "^1.0.7",
"css-loader": "^0.23.1",
"debug": "^2.2.0",
"enzyme": "^2.3.0",
"eslint": "^2.10.2",
"eslint-config-airbnb": "^9.0.1",
"eslint-import-resolver-node": "^0.2.0",
"eslint-plugin-import": "^1.8.0",
"eslint-plugin-jsx-a11y": "^1.2.2",
"eslint-plugin-react": "^5.1.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"html-webpack-plugin": "^2.17.0",
"ignore-styles": "^2.0.0",
"image-webpack-loader": "^1.8.0",
"json-loader": "^0.5.4",
"nock": "^8.0.0",
"node-sass": "^3.7.0",
"postcss-loader": "^0.9.1",
"react-addons-test-utils": "^15.1.0",
"react-hot-loader": "^3.0.0-beta.2",
"redux-logger": "^2.6.1",
"sass-loader": "^3.2.0",
"sinon": "^1.17.4",
"style-loader": "^0.13.0",
"stylelint": "^6.5.1",
"stylelint-config-standard": "^8.0.0",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1",
"why-did-you-update": "0.0.8"
},
"dependencies": {
"babel-polyfill": "^6.9.0",
"classnames": "^2.2.5",
"flexboxgrid": "^6.3.0",
"humps": "^1.1.0",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.13.0",
"moment": "^2.13.0",
"normalizr": "^2.1.0",
"react": "^15.1.0",
"react-addons-css-transition-group": "^15.1.0",
"react-addons-shallow-compare": "^15.1.0",
"react-dom": "^15.1.0",
"react-flexbox-grid": "^0.9.6",
"react-redux": "^4.4.5",
"react-router": "^2.4.1",
"react-router-redux": "^4.0.4",
"recompose": "^0.19.0",
"redux": "^3.5.2",
"redux-form": "^6.0.0-alpha.13",
"redux-saga": "^0.10.4",
"reselect": "^2.5.1"
}
}