forked from belgattitude/nextjs-monorepo-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
162 lines (162 loc) · 5.72 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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
{
"name": "nextjs-app",
"version": "3.59.0",
"private": true,
"author": {
"name": "Vanvelthem Sébastien",
"url": "https://github.com/belgattitude"
},
"license": "MIT",
"homepage": "https://github.com/belgattitude/nextjs-monorepo-example",
"repository": {
"type": "git",
"url": "https://github.com/belgattitude/nextjs-monorepo-example",
"directory": "apps/nextjs-app"
},
"scripts": {
"build": "next build",
"build-fast": "cross-env NEXTJS_IGNORE_TYPECHECK=1 NEXTJS_IGNORE_ESLINT=1 NEXTJS_DISABLE_SENTRY=1 NEXTJS_SENTRY_UPLOAD_DRY_RUN=1 next build",
"bundle-analyze": "cross-env ANALYZE=true NEXTJS_IGNORE_TYPECHECK=1 NEXTJS_IGNORE_ESLINT=1 NEXTJS_SENTRY_UPLOAD_DRY_RUN=1 yarn build",
"check-dist": "es-check -v",
"check-size": "size-limit --highlight-less",
"clean": "rimraf ./.next ./out ./coverage ./tsconfig.tsbuildinfo ./node_modules/.cache",
"dev": "next",
"fix-all-files": "eslint . --ext .ts,.tsx,.js,.jsx,.cjs,.mjs,.mdx,.graphql --fix",
"flamegraph-home": "npx 0x --output-dir './.debug/flamegraph/{pid}.0x' --on-port 'autocannon http://localhost:$PORT --duration 20' -- node ../../node_modules/.bin/next start",
"lint": "cross-env TIMING=1 eslint . --ext .ts,.tsx,.js,.jsx,.cjs,.mjs,.mdx,.graphql --cache --cache-location ../../.cache/eslint/nextjs-app.eslintcache",
"share-static-hardlink": "rimraf ./public/shared-assets && syncdir ../../static/assets ./public/shared-assets --copy",
"share-static-hardlink?": "echo 'Use this command to link assets... from shared static folder'",
"share-static-symlink": "rimraf ./public/shared-assets && symlink-dir ../../static/assets ./public/shared-assets",
"share-static-symlink?": "echo 'Use this command to link assets... from shared static folder'",
"start": "next start",
"test": "yarn test-unit",
"test-e2e": "cross-env E2E_WEBSERVER_MODE=BUILD_AND_START playwright test",
"test-unit": "vitest run",
"test-unit-jest": "jest --config ./jest.config.js",
"test-unit-watch": "vitest watch --ui",
"typecheck": "tsc --project ./tsconfig.json --noEmit",
"vercel-build": "yarn share-static-hardlink && next build"
},
"browserslist": {
"production": [
">0.3%",
"not ie 11",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@emotion/cache": "11.11.0",
"@emotion/react": "11.11.0",
"@emotion/server": "11.11.0",
"@emotion/styled": "11.11.0",
"@fontsource/inter": "4.5.15",
"@headlessui/react": "1.7.14",
"@hookform/resolvers": "3.1.0",
"@httpx/exception": "1.7.2",
"@mui/icons-material": "5.11.16",
"@mui/material": "5.13.1",
"@nextvalid/zod-request": "0.4.0",
"@pothos/core": "3.30.0",
"@pothos/plugin-errors": "3.11.1",
"@pothos/plugin-prisma": "3.51.1",
"@prisma/client": "4.14.1",
"@sentry/nextjs": "7.52.1",
"@sentry/react": "7.52.1",
"@soluble/cache-interop": "0.12.7",
"@soluble/cache-ioredis": "0.13.10",
"@soluble/dsn-parser": "1.9.1",
"@tanstack/react-query": "4.29.7",
"@vercel/analytics": "1.0.1",
"@your-org/api-gateway": "workspace:^",
"@your-org/common-i18n": "workspace:^",
"@your-org/core-lib": "workspace:^",
"@your-org/db-main-prisma": "workspace:^",
"@your-org/ts-utils": "workspace:^",
"@your-org/ui-lib": "workspace:^",
"axios": "1.4.0",
"clsx": "1.2.1",
"cors": "2.8.5",
"graphql": "16.6.0",
"graphql-yoga": "3.9.1",
"i18next": "22.5.0",
"jose": "4.14.4",
"ky": "0.33.3",
"next": "13.4.3",
"next-auth": "4.22.1",
"next-connect": "1.0.0",
"next-i18next": "13.2.2",
"next-secure-headers": "2.2.0",
"next-seo": "6.0.0",
"picocolors": "1.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.43.9",
"react-i18next": "12.3.1",
"rooks": "7.14.1",
"sharp": "0.32.1",
"superjson": "1.12.3",
"type-fest": "3.11.0",
"wonka": "6.3.2",
"zod": "3.21.4"
},
"devDependencies": {
"@next/bundle-analyzer": "13.4.3",
"@next/env": "13.4.3",
"@playwright/test": "1.34.0",
"@prisma/nextjs-monorepo-workaround-plugin": "4.14.1",
"@size-limit/file": "8.2.4",
"@svgr/webpack": "8.0.1",
"@tailwindcss/aspect-ratio": "0.4.2",
"@tailwindcss/forms": "0.5.3",
"@tailwindcss/typography": "0.5.9",
"@testing-library/dom": "9.3.0",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.4.3",
"@types/cors": "2.8.13",
"@types/jest": "29.5.1",
"@types/node": "20.2.1",
"@types/react": "18.2.6",
"@types/react-dom": "18.2.4",
"@types/react-test-renderer": "18.0.0",
"@types/testing-library__jest-dom": "5.14.5",
"@vitejs/plugin-react": "4.0.0",
"@vitest/coverage-istanbul": "0.31.1",
"@vitest/ui": "0.31.1",
"autoprefixer": "10.4.14",
"cross-env": "7.0.3",
"dotenv-flow": "3.2.0",
"dotenv-flow-cli": "1.0.0",
"es-check": "7.1.1",
"eslint": "8.41.0",
"eslint-config-next": "13.4.3",
"get-tsconfig": "4.5.0",
"happy-dom": "9.19.2",
"jest": "29.5.0",
"jest-css-modules-transform": "4.4.2",
"npm-run-all": "4.1.5",
"postcss": "8.4.23",
"postcss-flexbugs-fixes": "5.0.2",
"postcss-preset-env": "8.4.1",
"prettier": "2.8.8",
"react-test-renderer": "18.2.0",
"rimraf": "5.0.1",
"sass": "1.62.1",
"size-limit": "8.2.4",
"symlink-dir": "5.1.1",
"sync-directory": "6.0.4",
"tailwindcss": "3.3.2",
"ts-jest": "29.1.0",
"typescript": "5.0.4",
"vite": "4.3.8",
"vite-plugin-svgr": "3.2.0",
"vite-tsconfig-paths": "4.2.0",
"vitest": "0.31.1"
}
}