-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 1.67 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
{
"name": "synced-shopping-list",
"version": "1.41.1",
"license": "CC-BY-NC-4.0",
"dependencies": {
"@emotion/react": "^11.7.0",
"@emotion/styled": "^11.6.0",
"@mui/icons-material": "^5.2.1",
"@mui/material": "^5.2.3",
"@mui/styles": "^5.2.3",
"@netlify/functions": "^1.6.0",
"firebase": "^7.21.1",
"lodash": "^4.17.20",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.3",
"react-swipeable": "^7.0.0",
"react-zoom-pan-pinch": "^3.3.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@trivago/prettier-plugin-sort-imports": "^1.3.0",
"@types/jest": "^24.0.0",
"@types/lodash": "^4.14.161",
"@types/node": "^14.18.53",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"@types/react-router-dom": "^5.1.5",
"cra-append-sw": "^2.7.0",
"husky": "^4.3.0",
"typescript": "^4.9.5"
},
"scripts": {
"start": "react-scripts start",
"build": "tsc --noEmit && react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"pre-push": "sh scripts/pre-push.sh",
"push:no-version": "NO_VERSION=true git push",
"prettier": "prettier --write src"
},
"husky": {
"hooks": {
"pre-push": "yarn pre-push"
}
},
"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"
]
}
}