-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.77 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.77 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
{
"name": "client",
"version": "0.1.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/Golang-Coach/client.git"
},
"license": "Apache 2.0",
"homepage": "http://golang.coach",
"dependencies": {
"axios": "^0.17.1",
"babel-polyfill": "^6.26.0",
"classnames": "^2.2.5",
"eslint-plugin-flow-vars": "^0.5.0",
"eslint-plugin-flowtype": "^2.40.1",
"gh-pages": "^1.1.0",
"github-markdown-css": "^2.9.0",
"history": "^4.7.2",
"identity-obj-proxy": "^3.0.0",
"material-ui": "next",
"material-ui-icons": "^1.0.0-beta.17",
"numeral": "^2.0.6",
"prop-types": "^15.6.0",
"qs": "^6.5.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-helmet": "^5.2.0",
"react-redux": "^5.0.6",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-router-redux": "next",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-saga": "^0.16.0",
"timeago-react": "^2.0.0"
},
"devDependencies": {
"babel-eslint": "7.2.3",
"babel-jest": "^21.2.0",
"babel-plugin-syntax-class-properties": "^6.13.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"codecov": "^2.3.0",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"enzyme-to-json": "^3.3.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"fetch-mock": "^5.13.1",
"flow-bin": "^0.61.0",
"jest": "^21.2.1",
"jest-enzyme": "^4.0.1",
"jest-junit": "^3.4.0",
"react-scripts": "1.0.17",
"react-test-renderer": "^16.0.0"
},
"scripts": {
"start": "react-scripts start",
"build": "yarn run flow && yarn run eslint && react-scripts build",
"build-local": "react-scripts build",
"deploy": "gh-pages -d build",
"test:lint:js": "eslint --ext=js --ext=jsx .",
"eject": "react-scripts eject",
"flow": "flow",
"eslint": "eslint ./src",
"test": "jest",
"test-ci": "jest -u --testResultsProcessor='jest-junit'",
"codecov": "codecov"
},
"jest": {
"verbose": true,
"setupFiles": [
"./__mocks__/setup.mock.js"
],
"collectCoverageFrom": [
"**/src/**/*.{js,jsx}"
],
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|sass)$": "<rootDir>/__mocks__/styleMock.js"
}
}
}