-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
79 lines (79 loc) · 2.36 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
{
"name": "next-pwa",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"debug": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"type:check": "tsc --noEmit",
"analyze": "env ANALYZE=true pnpm build",
"lint": "eslint --fix \"./src/**/*.{js,jsx,ts,tsx}\"",
"types": "tsc",
"prepare": "husky install"
},
"browserslist": [
">0.3%",
"not ie 11",
"not dead",
"not op_mini all"
],
"dependencies": {
"@emotion/cache": "^11.9.3",
"@emotion/react": "^11.9.3",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.9.3",
"@mui/icons-material": "^5.8.3",
"@mui/lab": "^5.0.0-alpha.85",
"@mui/material": "^5.8.3",
"@mui/styles": "^5.8.3",
"@mui/system": "^5.8.3",
"js-cookie": "^3.0.1",
"next": "canary",
"nextjs-workbox-config": "^2.0.0",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-swipeable-views": "^0.14.0",
"react-swipeable-views-core": "^0.14.0",
"react-swipeable-views-utils": "^0.14.0",
"workbox-core": "^6.5.3",
"workbox-expiration": "^6.5.3",
"workbox-precaching": "^6.5.3",
"workbox-recipes": "^6.5.3",
"workbox-routing": "^6.5.3",
"workbox-strategies": "^6.5.3",
"workbox-window": "^6.5.3"
},
"devDependencies": {
"@babel/core": "^7.18.5",
"@emotion/babel-plugin": "^11.9.2",
"@next/bundle-analyzer": "^12.1.6",
"@next/eslint-plugin-next": "^12.1.6",
"@types/csso": "^5.0.0",
"@types/js-cookie": "^3.0.2",
"@types/node": "^17.0.42",
"@types/react": "^18.0.12",
"@types/react-swipeable-views": "^0.13.1",
"@types/react-swipeable-views-core": "^0.13.0",
"@types/react-swipeable-views-utils": "^0.13.3",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"babel-plugin-transform-define": "^2.0.1",
"babel-plugin-transform-remove-console": "^6.9.4",
"eslint": "^8",
"eslint-config-next": "^12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react-hooks": "^4.5.0",
"husky": "^8.0.1",
"jscodeshift": "^0.13.1",
"lint-staged": "^13.0.1",
"markdown-toc": "^1.2.0",
"next-compose-plugins": "^2.2.1",
"prettier": "^2.6.2",
"typescript": "^4.7.3",
"workbox-webpack-plugin": "^6.5.3",
"zx": "^7.0.0"
}
}