forked from belgattitude/nextjs-monorepo-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
153 lines (153 loc) · 5.29 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
{
"name": "web-app",
"version": "3.42.0",
"license": "MIT",
"private": true,
"homepage": "https://github.com/belgattitude/nextjs-monorepo-example",
"repository": {
"type": "git",
"url": "https://github.com/belgattitude/nextjs-monorepo-example",
"directory": "apps/web-app"
},
"author": {
"name": "Vanvelthem Sébastien",
"url": "https://github.com/belgattitude"
},
"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"
]
},
"scripts": {
"clean": "rimraf --no-glob ./.next ./out ./coverage ./tsconfig.tsbuildinfo ./.eslintcache && jest --clear-cache",
"dev": "next",
"build": "next build",
"build-no-checks": "NEXTJS_IGNORE_TYPECHECK=1 NEXTJS_IGNORE_ESLINT=1 next build",
"vercel-build": "yarn share-static-hardlink && next build",
"start": "next start",
"bundle-analyze": "cross-env ANALYZE=true yarn build",
"?share-static-symlink": "echo 'Use this command to link assets, locales... from shared static folder'",
"share-static-symlink": "rimraf ./public/shared-assets && symlink-dir ../../static/assets ./public/shared-assets",
"?share-static-hardlink": "echo 'Use this command to link assets, locales... from shared static folder'",
"share-static-hardlink": "rimraf ./public/shared-assets && syncdir ../../static/assets ./public/shared-assets --copy",
"check-dist": "es-check -v",
"check-build-size": "size-limit --highlight-less",
"test": "yarn test-unit",
"test-unit": "jest --config jest.config.js",
"test-e2e": "cross-env E2E_WEBSERVER_MODE=BUILD_AND_START playwright test",
"typecheck": "tsc --project ./tsconfig.json --noEmit",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx",
"fix-all-files": "eslint . --ext .ts,.tsx,.js,.jsx --fix",
"?postinstall": "@todo: the prisma generate seems to be required, but is installed at the root",
"postinstall": "test -n \"$SKIP_POSTINSTALL\" || yarn workspace @your-org/db-main-prisma run prisma generate"
},
"devDependencies": {
"@emotion/babel-plugin": "11.7.2",
"@next/bundle-analyzer": "12.1.0",
"@next/env": "12.1.0",
"@playwright/test": "1.19.2",
"@size-limit/file": "7.0.8",
"@svgr/webpack": "6.2.1",
"@tailwindcss/aspect-ratio": "0.4.0",
"@tailwindcss/forms": "0.4.0",
"@tailwindcss/line-clamp": "0.3.1",
"@tailwindcss/typography": "0.5.2",
"@testing-library/jest-dom": "5.16.2",
"@testing-library/react": "12.1.3",
"@testing-library/react-hooks": "7.0.2",
"@types/cors": "2.8.12",
"@types/ioredis": "4.28.8",
"@types/jest": "27.4.1",
"@types/node": "17.0.21",
"@types/react": "17.0.39",
"@types/react-dom": "17.0.11",
"@typescript-eslint/eslint-plugin": "5.12.1",
"@typescript-eslint/parser": "5.12.1",
"autoprefixer": "10.4.2",
"cross-env": "7.0.3",
"dotenv-flow": "3.2.0",
"dotenv-flow-cli": "1.0.0",
"es-check": "6.2.1",
"eslint": "8.10.0",
"eslint-config-next": "12.1.0",
"eslint-config-prettier": "8.4.0",
"eslint-import-resolver-typescript": "2.5.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jest": "26.1.1",
"eslint-plugin-jest-formatting": "3.1.0",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.29.2",
"eslint-plugin-react-hooks": "4.3.0",
"eslint-plugin-regexp": "1.5.1",
"eslint-plugin-sonarjs": "0.12.0",
"eslint-plugin-testing-library": "5.0.5",
"jest": "27.5.1",
"jest-css-modules-transform": "4.3.0",
"npm-run-all": "4.1.5",
"postcss": "8.4.7",
"postcss-flexbugs-fixes": "5.0.2",
"postcss-preset-env": "7.4.1",
"prettier": "2.5.1",
"rimraf": "3.0.2",
"sass": "1.49.9",
"size-limit": "7.0.8",
"symlink-dir": "5.0.1",
"sync-directory": "4.0.12",
"tailwindcss": "3.0.23",
"ts-jest": "27.1.3",
"ts-node": "10.5.0",
"typescript": "4.5.5"
},
"dependencies": {
"@babel/core": "7.17.5",
"@emotion/cache": "11.7.1",
"@emotion/react": "11.8.1",
"@emotion/server": "11.4.0",
"@emotion/styled": "11.8.1",
"@fontsource/inter": "4.5.4",
"@headlessui/react": "1.5.0",
"@mui/icons-material": "5.4.2",
"@mui/material": "5.4.3",
"@sentry/browser": "6.18.0",
"@sentry/node": "6.18.0",
"@soluble/cache-ioredis": "0.8.3",
"@tsed/exceptions": "6.103.2",
"@your-org/core-lib": "workspace:^",
"@your-org/db-main-prisma": "workspace:^",
"@your-org/ui-lib": "workspace:^",
"apollo-server-core": "3.6.3",
"apollo-server-micro": "3.6.3",
"axios": "0.26.0",
"cors": "2.8.5",
"graphql": "16.3.0",
"i18next": "21.6.12",
"ioredis": "4.28.5",
"ky": "0.29.0",
"micro": "9.3.4",
"next": "12.1.0",
"next-auth": "4.2.1",
"next-connect": "0.12.2",
"next-i18next": "10.4.0",
"next-secure-headers": "2.2.0",
"next-seo": "5.1.0",
"next-transpile-modules": "9.0.0",
"picocolors": "1.0.0",
"react": "18.0.0-rc.0-next-fa816be7f-20220128",
"react-dom": "18.0.0-rc.0-next-fa816be7f-20220128",
"react-i18next": "11.15.5",
"react-query": "3.34.16",
"rooks": "5.10.0",
"sharp": "0.30.1",
"superjson": "1.8.1",
"type-fest": "2.12.0"
}
}