-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
135 lines (135 loc) · 4.31 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "octopus-bn-frontend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server --mode development --open --hot",
"build": "webpack --mode production",
"start": "serve -s ./build",
"test": "jest --silent -c",
"test:watch": "jest --silent --watch",
"storybook": "start-storybook",
"coverage": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"heroku-postbuild": "webpack -p"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andela/octopus-bn-frontend.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/andela/octopus-bn-frontend/issues"
},
"homepage": "https://github.com/andela/octopus-bn-frontend#readme",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.9.2",
"@storybook/addon-actions": "^5.3.18",
"@storybook/addon-links": "^5.3.18",
"@storybook/addons": "^5.3.18",
"@storybook/react": "^5.3.18",
"@testing-library/dom": "^7.2.1",
"@testing-library/jest-dom": "^5.5.0",
"@testing-library/react": "^10.0.2",
"@testing-library/user-event": "^10.0.2",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"babel-loader": "^8.0.4",
"css-loader": "^3.5.2",
"cssnano": "^4.1.10",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.1",
"fetch-mock": "^9.4.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^25.3.0",
"jest-localstorage-mock": "^2.4.2",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.14.1",
"postcss-loader": "^3.0.0",
"redux-mock-store": "^1.5.4",
"sass": "^1.26.3",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.4",
"webpack": "^4.43.0",
"webpack-cli": "^3.1.1",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@date-io/date-fns": "^1.3.13",
"@material-ui/core": "^4.9.10",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.50",
"@material-ui/pickers": "^3.2.10",
"@reach/router": "^1.3.3",
"axios": "^0.19.2",
"countries-cities": "0.0.11",
"country-list": "^2.2.0",
"coveralls": "^3.0.11",
"date-fns": "^2.0.0-beta.5",
"dotenv": "^8.2.0",
"dotenv-webpack": "^1.7.0",
"eslint-config-react-app": "^5.2.1",
"jsonwebtoken": "^8.5.1",
"material-ui-pickers": "^2.2.4",
"nyc": "^15.0.1",
"query-string": "^6.12.1",
"qs": "^6.9.3",
"react": "^16.5.2",
"react-country-flag": "^2.0.1",
"react-dom": "^16.5.2",
"react-icons": "^3.10.0",
"react-intl": "^4.5.0",
"react-redux": "^7.2.0",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-logger": "^3.0.6",
"redux-promise-middleware": "^6.1.2",
"redux-thunk": "^2.3.0",
"serve": "^11.3.0",
"validator": "^13.0.0"
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/src/__mocks__/fileMock.js",
"\\.(css|less|scss)$": "<rootDir>/src/__mocks__/styleMock.js"
},
"setupFiles": [
"jest-localstorage-mock"
],
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!<rootDir>/node_modules/",
"!src/**/Profile.js",
"!src/**/jest.config.js",
"!src/**/theme.js",
"!src/**/index.js",
"!src/assets/*",
"!src/**/ProfileSettings.js",
"!src/redux/actions/profileActions.js",
"!src/redux/actions/*",
"!src/stories/*",
"!src/components/AddAccommodationForm.js",
"!src/components/RequestsTable.js",
"!src/components/DrawerComponents.js",
"!src/views/Dashboard/addAccommodationPage.js",
"!src/views/Message.js",
"!src/helpers/*",
"!src/redux/actions/accommodationAction.js",
"!src/redux/actions/likeOrUnlikeAction.js",
"!src/components/Home.js"
]
}
}