-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
135 lines (135 loc) · 4.61 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "pwa-template",
"version": "1.0.0",
"description": "PWA template with Next.js and MUI",
"license": "MIT",
"author": {
"name": "Gregor Adams",
"url": "https://github.com/pixelass"
},
"main": "n.a.",
"directories": {
"doc": "docs"
},
"scripts": {
"build": "yarn favicons && next build",
"build:test": "yarn favicons && yarn dlx cross-env@7 NODE_ENV=test next build",
"cypress": "yarn dlx cypress@10 open --e2e",
"cypress:run": "yarn dlx cypress@10 run",
"cypress:record": "yarn dlx env-cmd -f '.env.local' yarn dlx cypress@10 run --record",
"dev": "yarn favicons && next dev",
"eslint": "eslint '{**/*,*}{.,.config.}{js,mjs,ts,tsx}'",
"eslint:fix": "yarn eslint --fix",
"favicons": "node scripts/favicons.mjs",
"postinstall": "husky install",
"jest": "jest",
"jest:watch": "jest --watch",
"lint": "yarn tsc:noEmit && yarn eslint && next lint",
"ncu": "yarn dlx npm-check-updates@16 -u --dep='prod,dev'",
"ncu:minor": "yarn ncu -t minor",
"ncu:patch": "yarn ncu -t patch",
"prettier": "prettier '{**/*,*}{.,.config.}{js,mjs,ts,tsx}'",
"release": "yarn dlx standard-version@9",
"spj": "yarn dlx sort-package-json@1 package.json",
"start": "next start",
"storybook": "start-storybook -p 6006 -s ./public",
"storybook:build": "build-storybook -s ./public",
"test": "yarn jest",
"toc": "yarn dlx markdown-toc@1 README.md -i",
"tsc:noEmit": "tsc --noEmit",
"unimported": "yarn dlx unimported@1"
},
"dependencies": {
"@emotion/cache": "11.10.5",
"@emotion/react": "11.10.5",
"@emotion/server": "11.10.0",
"@emotion/styled": "11.10.5",
"@lottiefiles/react-lottie-player": "3.4.9",
"@mui/icons-material": "5.10.16",
"@mui/lab": "5.0.0-alpha.110",
"@mui/material": "5.10.16",
"axios": "1.2.0",
"clsx": "1.2.1",
"graphql": "16.6.0",
"graphql-yoga": "3.1.1",
"i18next": "^22.0.6",
"nanoid": "4.0.0",
"next": "13.0.6",
"next-auth": "4.18.0",
"next-i18next": "13.0.0",
"next-pwa": "5.6.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.40.0",
"react-i18next": "12.0.0",
"swr": "2.0.0-rc.3",
"unsplash-js": "7.0.15",
"zustand": "4.1.4"
},
"devDependencies": {
"@badeball/cypress-cucumber-preprocessor": "^14.0.0",
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@cypress/browserify-preprocessor": "^3.0.2",
"@cypress/webpack-dev-server": "^3.1.0",
"@cypress/webpack-preprocessor": "^5.15.6",
"@jest/globals": "^29.3.1",
"@mdx-js/react": "^2.1.5",
"@panva/hkdf": "^1.0.2",
"@sentry/nextjs": "^7.23.0",
"@storybook/addon-actions": "^6.5.14",
"@storybook/addon-essentials": "^6.5.14",
"@storybook/addon-interactions": "^6.5.14",
"@storybook/addon-links": "^6.5.14",
"@storybook/builder-webpack5": "^6.5.14",
"@storybook/manager-webpack5": "^6.5.14",
"@storybook/node-logger": "^6.5.14",
"@storybook/react": "^6.5.14",
"@storybook/testing-library": "^0.0.13",
"@swc/core": "^1.3.21",
"@swc/jest": "^0.2.23",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/node": "^16.11.45",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@types/testing-library__jest-dom": "^5.14.5",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"cypress": "^11.2.0",
"dotenv": "^16.0.3",
"eslint": "^8.29.0",
"eslint-config-next": "^13.0.6",
"eslint-config-prettier": "^8.5.0",
"eslint-config-typescript": "^3.0.0",
"eslint-config-xo": "^0.43.1",
"eslint-config-xo-react": "^0.27.0",
"eslint-config-xo-typescript": "^0.55.1",
"eslint-plugin-jest": "^27.1.6",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.7",
"eslint-plugin-unicorn": "^45.0.1",
"favicons": "^7.0.2",
"husky": "^8.0.2",
"i18next-browser-languagedetector": "^7.0.1",
"i18next-http-backend": "^2.0.2",
"jest": "^29.3.1",
"jest-config": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"jose": "^4.11.1",
"lint-staged": "^13.0.4",
"next-transpile-modules": "^10.0.0",
"path-browserify": "^1.0.1",
"prettier": "^2.8.0",
"standard-version": "^9.5.0",
"storybook-addon-next": "^1.7.1",
"storybook-react-i18next": "^1.1.2",
"type-fest": "^3.3.0",
"typescript": "^4.9.3",
"webpack": "^5.75.0"
},
"packageManager": "[email protected]"
}