forked from rowlandekemezie/media-library
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
54 lines (54 loc) · 1.69 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
{
"name": "media-library",
"version": "0.0.1",
"private": true,
"devDependencies": {
"babel-core": "^6.13.2",
"babel-eslint": "^6.1.2",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-2": "^6.13.0",
"coveralls": "^2.11.12",
"eslint": "^3.2.2",
"eslint-config-airbnb": "^10.0.0",
"eslint-plugin-react": "^6.0.0",
"ignore-styles": "^4.0.0",
"istanbul": "^1.0.0-alpha.2",
"mocha": "^3.0.2",
"nock": "^8.0.0",
"react-addons-test-utils": "^15.3.0",
"react-scripts": "0.2.1",
"redux-mock-store": "^1.1.2"
},
"dependencies": {
"react": "^15.2.1",
"react-dom": "^15.2.1",
"react-redux": "^4.4.5",
"react-router": "^2.6.0",
"redux": "^3.5.2",
"redux-saga": "^0.11.0",
"enzyme": "^2.4.1",
"expect": "latest",
"pushstate-server": "latest",
"isomorphic-fetch": "^2.2.1"
},
"bugs": {
"url": "https://github.com/andela-rekemezie/media-gallery/issues"
},
"scripts": {
"start": "react-scripts start",
"build": "rm -rf build/ && react-scripts build",
"eject": "react-scripts eject",
"test:coverage": "rm -rf coverage/ && istanbul cover _mocha -- --compilers css:ignore-styles ./.setup.js \"test\"",
"test": "clear && _mocha --compilers css:ignore-styles ./.setup.js \"test\" --recursive",
"test:watch": "npm run test -- --watch",
"deploy": "pushstate-server build",
"homepage": "https://media-gallery.herokuapp.com",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"eslintConfig": {
"extends": "./node_modules/react-scripts/config/eslint.js"
}
}