-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.02 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.02 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
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "ah-codeblooded-frontend",
"version": "0.1.0",
"private": true,
"dependencies": {
"Dante2": "0.5.0-rc1",
"axios": "^0.18.0",
"axios-mock-adapter": "^1.15.0",
"coveralls": "^3.0.2",
"dotenv": "^6.1.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"expect": "^23.6.0",
"history": "^4.7.2",
"istanbul": "^0.4.5",
"materialize-css": "^1.0.0",
"moment-timezone": "^0.5.23",
"moxios": "^0.4.0",
"node-sass": "^4.10.0",
"pre-commit": "^1.2.2",
"prismjs": "^1.15.0",
"prop-types": "^15.6.2",
"react": "^16.6.0",
"react-animated-slider": "^1.1.4",
"react-content-loader": "^3.2.0",
"react-dom": "^16.6.0",
"react-facebook-login": "^4.1.1",
"react-google-login": "^3.2.1",
"react-infinite-scroller": "^1.2.2",
"react-materialize": "^2.4.8",
"react-mentions": "^2.4.1",
"react-moment": "^0.8.3",
"react-redux": "^5.1.0",
"react-router-dom": "^4.3.1",
"react-router-redux": "^4.0.8",
"react-scripts": "2.0.5",
"react-share": "^2.3.1",
"react-social-login": "^3.4.2",
"react-star-rating-component": "^1.4.1",
"react-test-renderer": "^16.6.1",
"redux": "^4.0.1",
"redux-devtools-extension": "^2.13.5",
"redux-immutable-state-invariant": "^2.1.0",
"redux-logger": "^3.0.6",
"redux-mock-store": "^1.5.3",
"redux-thunk": "^2.3.0",
"sinon": "^7.1.1",
"sweetalert": "^2.1.2",
"truncate": "^2.0.1",
"url-pattern": "^1.0.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint src/",
"lint:watch": "yarn lint -- --watch",
"coverage": "CI=true istanbul cover react-scripts test && istanbul check-coverage --statements 80 --functions 80 --lines 80 --branches 80"
},
"pre-commit": [
"lint",
"coverage"
],
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"axios-mock-adapter": "^1.15.0",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.4",
"eslint": "5.6.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"react-router-enzyme-context": "^1.2.0",
"redux-devtools-extension": "^2.13.5",
"redux-logger": "^3.0.6"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!src/index.js",
"!src/serviceWorker.js",
"!src/components/ArticleEditor/index.js",
"!src/pages/Articles/Create/index.js",
"!src/pages/Articles/Read/index.js",
"!src/containers/UsersListing/index.js",
"!src/containers/profiles/ViewProfiles/index.js",
"!src/pages/Articles/Update/index.js",
"!src/containers/SignupForm/index.js",
"!src/env.js",
"!src/routes/index.js",
"!src/store/**",
"!src/routes/*",
"!src/utils/*"
]
}
}