forked from Tomburgs/pwa-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.37 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
{
"name": "pwa-boilerplate",
"description": "PWA Boilerplate",
"version": "0.2.0",
"license": "MIT",
"dependencies": {
"@date-io/date-fns": "1.x",
"@emotion/react": "^11.1.4",
"@emotion/styled": "^11.0.0",
"@hookform/resolvers": "1.3.0",
"@material-ui/core": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"@material-ui/pickers": "^3.2.10",
"@svgr/webpack": "5.5.0",
"@tailwindcss/forms": "^0.2.1",
"@types/classnames": "^2.2.11",
"@types/date-fns": "^2.6.0",
"autoprefixer": "^10.2.1",
"classnames": "^2.2.6",
"date-fns": "^2.16.1",
"firebase": "^8.2.3",
"framer-motion": "^3.2.2-rc.1",
"html-react-parser": "^1.2.1",
"jstoxml": "^2.0.3",
"next": "^10.0.5",
"postcss": "^8.2.4",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-import": "^14.0.0",
"postcss-preset-env": "^6.7.0",
"raw-loader": "^4.0.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-hook-form": "^6.14.2",
"react-intl-currency-input": "^0.2.6",
"react-modal-sheet": "^1.2.0",
"react-redux": "^7.2.2",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"sass": "^1.32.4",
"tailwindcss": "^2.0.2",
"typescript": "~4.1.3",
"workbox-core": "^6.0.2",
"workbox-expiration": "^6.0.2",
"workbox-precaching": "^6.0.2",
"workbox-routing": "^6.0.2",
"workbox-strategies": "^6.0.2",
"workbox-webpack-plugin": "^6.0.2",
"yup": "^0.32.8"
},
"devDependencies": {
"@types/css-modules": "^1.0.1",
"@types/node": "^14.14.21",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-redux": "^7.1.15",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"eslint": "^7.17.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-flowtype": "5.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0"
},
"scripts": {
"development": "NODE_ENV=development next",
"start": "NODE_ENV=production next start",
"build": "next build",
"eslint": "eslint ./src"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}