-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.73 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
{
"name": "essentially",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "webpack --config webpack.config.prod.js",
"dev:w": "webpack --watch --config webpack.config.dev.js",
"dev": "webpack-dev-server --config webpack.config.dev.js",
"dev:out": "webpack-dev-server --host=0.0.0.0 --config webpack.config.dev.js",
"dev:hot": "yarn dev -- --hot",
"start": "node ./server",
"test": "jest",
"format": "pretty-quick",
"lint": "eslint src/**/*.js src/**/*.jsx",
"svgr": "svgr -d src/assets/icons/ src/assets/svg --ext jsx --icon",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JulianaJM/essentially.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/JulianaJM/essentially/issues"
},
"homepage": "https://github.com/JulianaJM/essentially#readme",
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.5",
"@babel/eslint-parser": "^7.16.5",
"@babel/plugin-proposal-class-properties": "^7.16.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-template-literals": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-react": "^7.16.5",
"@svgr/cli": "^6.1.2",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"autoprefixer": "^10.4.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^27.4.5",
"babel-loader": "^8.2.3",
"babel-plugin-dynamic-import-node": "^2.3.3",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^10.2.0",
"css-loader": "^6.5.1",
"dotenv-webpack": "^7.0.3",
"eslint": "^8.5.0",
"eslint-config-airbnb": "^19.0.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-webpack-plugin": "^3.1.1",
"html-loader": "^3.0.1",
"html-webpack-plugin": "^5.5.0",
"husky": "^7.0.4",
"identity-obj-proxy": "^3.0.0",
"image-minimizer-webpack-plugin": "^3.1.2",
"imagemin": "^8.0.1",
"imagemin-mozjpeg": "^10.0.0",
"imagemin-pngquant": "^9.0.2",
"jest": "^27.4.5",
"mini-css-extract-plugin": "^2.4.5",
"optimize-css-assets-webpack-plugin": "^6.0.1",
"path": "^0.12.7",
"postcss-loader": "^6.2.1",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.2",
"react-axe": "^3.1.0",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"sass": "^1.45.1",
"sass-loader": "^12.4.0",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.0",
"webpack": "^5.76.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.0",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@appbaseio/react-searchbox": "^1.7.0",
"@babel/polyfill": "^7.4.4",
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.16",
"@hot-loader/react-dom": "^17.0.1",
"axios": "^0.24.0",
"classnames": "^2.3.1",
"core-js": "3",
"elasticsearch": "^16.7.2",
"express": "^4.17.3",
"focus-trap-js": "^1.1.0",
"fuse.js": "^6.4.6",
"lazysizes": "^5.3.2",
"lodash": "^4.17.21",
"log": "^6.3.1",
"memoize-one": "^6.0.0",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-autosuggest": "^10.1.0",
"react-device-detect": "^2.1.2",
"react-dom": "^17.0.2",
"react-highlight-words": "^0.17.0",
"react-hot-loader": "^4.13.0",
"react-router-dom": "^6.2.1",
"react-select": "^5.2.1",
"regenerator-runtime": "^0.13.9"
}
}