-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
94 lines (94 loc) · 2.39 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
{
"name": "website",
"version": "0.1.0",
"private": true,
"dependencies": {
"@kiwicom/orbit-components": "^0.84.2",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"algoliasearch": "^4.3.0",
"axios": "^0.19.2",
"calendarjs": "^0.2.0",
"cloudinary-react": "^1.5.0",
"cookie": "^0.4.1",
"cors": "^2.8.5",
"dotenv-webpack": "^1.7.0",
"firebase": "^8.1.1",
"firebase-admin": "^9.5.0",
"formik": "^2.1.4",
"isomorphic-unfetch": "^3.0.0",
"moment": "^2.25.3",
"next": "^10.0.0",
"next-images": "^1.4.0",
"next-redux-wrapper": "^6.0.0",
"react": "^16.13.1",
"react-beautiful-dnd": "^13.0.0",
"react-device-detect": "^1.13.1",
"react-dom": "^16.13.1",
"react-dropzone": "^11.0.1",
"react-html-parser": "^2.0.2",
"react-instantsearch-dom": "^6.6.0",
"react-linkify": "^1.0.0-alpha",
"react-measure": "^2.3.0",
"react-quill": "^1.3.5",
"react-redux": "^7.2.0",
"react-responsive-carousel": "^3.2.7",
"react-scripts": "3.4.0",
"react-textarea-autosize": "^8.2.0",
"react-tiny-popover": "^5.1.0",
"react-toastify": "^6.0.5",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"search-insights": "^1.6.2",
"styled-components": "^5.0.1",
"uuid": "^8.3.0",
"yup": "^0.28.5"
},
"scripts": {
"dev": "next",
"dev-local": "next --hostname 0.0.0.0",
"build": "next build",
"start": "next start -p $PORT",
"lint": "prettier --check '**/*.js'",
"format": "prettier --write '**/*.js'"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@kiwicom/babel-plugin-orbit-components": "^1.6.0",
"babel-plugin-styled-components": "^1.10.7",
"gray-matter": "^4.0.2",
"husky": "^4.3.7",
"lint-staged": "^10.5.4",
"prettier": "2.0.5",
"remark-highlight.js": "^6.0.0",
"remark-html": "^12.0.0",
"remark-parse": "^8.0.3",
"unified": "^9.1.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write"
]
}
}