-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.06 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.06 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
{
"name": "coding-geeks-ah-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test:CI": "CI=true react-scripts test \"-- --coverage\"",
"test": "react-scripts test \"-- --coverage\" --watchAll",
"e2e:test": "cypress open",
"eject": "react-scripts eject",
"coverage": "react-scripts test --coverage",
"coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls"
},
"dependencies": {
"@ckeditor/ckeditor5-build-classic": "^12.4.0",
"@ckeditor/ckeditor5-editor-classic": "^12.1.4",
"@ckeditor/ckeditor5-react": "^1.1.3",
"axios": "^0.19.0",
"ckeditor-cloudinary-uploader-adapter": "^1.1.3",
"css-loader": "^3.2.0",
"dotenv": "^8.1.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"enzyme-to-json": "^3.4.0",
"font-awesome": "^4.7.0",
"jest-localstorage-mock": "^2.4.0",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^2.2.0",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"node-sass": "^4.12.0",
"npm": "^6.13.0",
"prop-types": "^15.7.2",
"query-string": "^6.8.3",
"querystring": "^0.2.0",
"react": "^16.9.0",
"react-confirm-alert": "^2.4.1",
"react-dom": "^16.9.0",
"react-html-parser": "^2.0.2",
"react-infinite-scroll": "^0.1.5",
"react-infinite-scroll-component": "^5.0.1",
"react-infinite-scroller": "^1.2.4",
"react-js-pagination": "^3.0.2",
"react-redux": "^7.1.1",
"react-redux-modal-flex": "^2.0.0",
"react-router-dom": "^5.0.1",
"react-router-prop-types": "^1.0.4",
"react-scripts": "3.1.2",
"react-share": "^3.0.1",
"react-star-ratings": "^2.3.0",
"react-toastify": "^5.4.0",
"reactstrap": "^8.0.1",
"redux": "^4.0.4",
"redux-devtools-extension": "^2.13.8",
"redux-promise-middleware": "^6.1.1",
"redux-thunk": "^2.3.0",
"sass-loader": "^8.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.3.2",
"@typescript-eslint/parser": "^2.3.2",
"coveralls": "^3.0.6",
"cypress": "^3.4.1",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"history": "^4.10.1",
"moxios": "^0.4.0",
"react-test-renderer": "^16.10.2",
"redux-mock-store": "^1.5.3",
"sinon": "^7.5.0",
"start-server-and-test": "^1.10.2"
},
"eslintConfig": {
"extends": "react-app"
},
"jest": {
"collectCoverageFrom": [
"<rootDir>/**/*.js",
"!<rootDir>/src/serviceWorker.js",
"!<rootDir>/src/index.js",
"!<rootDir>/coverage/**/*.*",
"!<rootDir>/build/**/*.*",
"!<rootDir>/cypress/**/*.*"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}