forked from SnapITSolutions/snapit-hacktoberfest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.56 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
{
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"test": "jest",
"lint": "eslint \"src/**/*.{js,jsx}\"",
"stylelint": "stylelint src",
"prettier": "prettier --check \"src\"",
"prepare": "husky install"
},
"license": "MIT",
"dependencies": {
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@mui/icons-material": "^5.0.3",
"@mui/material": "^5.0.0",
"@vitejs/plugin-react-refresh": "^1.3.5",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.2",
"clsx": "^1.1.1",
"enzyme": "^3.11.0",
"leaflet": "^1.7.1",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-intl": "^5.20.10",
"react-leaflet": "^3.2.1",
"react-responsive": "^9.0.0-beta.3",
"react-router-dom": "^5.2.0",
"vite": "^2.4.2"
},
"devDependencies": {
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"eslint": "^7.2.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^1.7.0",
"husky": ">=6",
"jest": "^27.0.6",
"lint-staged": ">=10",
"prettier": "2.3.2",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0"
},
"engines": {
"node": "^14.17.3"
},
"lint-staged": {
"*.{js,jsx}": "eslint --cache --fix",
"*.css": "stylelint --fix",
"*.{js,jsx,json,css,md}": "prettier --write"
}
}