-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.42 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
{
"name": "yadisk-dispatcher",
"version": "2.0.0",
"description": "Yandex Disk files dispatcher",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server",
"clean": "rimraf dist",
"production": "cross-env npm run clean && webpack --config webpack.production.config.js --progress --profile --colors",
"lint": "eslint ./app/**/**.js",
"test": "jest",
"test:watch": "jest --watch",
"coverage": "jest --coverage",
"precommit": "cross-env npm run lint && npm test",
"prepush": "cross-env npm run lint && npm test"
},
"author": "Artem Kislov <[email protected]>",
"license": "MIT",
"jest": {
"mapCoverage": true,
"collectCoverageFrom": [
"app/**/*.{js,jsx,ts,tsx}"
],
"testMatch": [
"**/?(*.)(spec|test).js?(x)"
]
},
"dependencies": {
"axios": "^0.16.2",
"bootstrap": "^3.3.7",
"cross-env": "5.0.1",
"font-awesome": "^4.7.0",
"history": "^4.7.2",
"prop-types": "^15.5.10",
"react": "15.6.1",
"react-bootstrap": "^0.31.2",
"react-dom": "15.6.1",
"react-fa": "^4.2.0",
"react-hot-loader": "3.0.0-beta.6",
"react-redux": "^5.0.6",
"react-router-dom": "4.2.0",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-saga": "^0.15.6"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-eslint": "7.2.3",
"babel-loader": "7.1.2",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-react-boilerplate": "1.1.1",
"babel-preset-react-hmre": "1.1.1",
"babel-preset-stage-2": "6.24.1",
"copy-webpack-plugin": "4.0.1",
"css-loader": "0.28.7",
"enzyme": "2.9.1",
"eslint": "3.19.0",
"eslint-config-airbnb": "15.1.0",
"eslint-loader": "1.8.0",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-jsx-a11y": "5.1.0",
"eslint-plugin-react": "7.2.0",
"extract-text-webpack-plugin": "3.0.0",
"file-loader": "0.11.2",
"html-webpack-plugin": "2.30.0",
"husky": "0.14.3",
"jest": "21.0.0",
"node-sass": "4.5.3",
"open-browser-webpack-plugin": "0.0.5",
"react-addons-test-utils": "15.6.0",
"react-test-renderer": "^15.6.1",
"rimraf": "2.6.1",
"sass-loader": "6.0.6",
"style-loader": "0.18.2",
"url-loader": "0.5.8",
"webpack": "3.5.5",
"webpack-dev-server": "2.7.1"
}
}