forked from belgattitude/nextjs-monorepo-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 3.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
{
"name": "blog-app",
"version": "3.16.2",
"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/blog-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": {
"dev": "next",
"build": "next build",
"vercel-build": "yarn share:static:hardlink && cross-env NEXTJS_BUILD_TARGET=serverless next build",
"clean": "rimraf --no-glob ./.next ./out ./coverage ./tsconfig.tsbuildinfo && jest --clear-cache",
"export": "next export",
"start": "next start",
"?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",
"bundle:analyze": "cross-env ANALYZE=true yarn build",
"test": "run-s 'test:*'",
"test:unit": "jest --config jest.config.js --maxWorkers=50% --color $@",
"ci-test:unit": "jest --config jest.config.js --runInBand --color $@",
"typecheck": "tsc --project ./tsconfig.json --noEmit",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx",
"fix:staged-files": "lint-staged --allow-empty",
"fix:all-files": "eslint . --ext .ts,.tsx,.js,.jsx --fix"
},
"devDependencies": {
"@emotion/babel-plugin": "11.3.0",
"@next/bundle-analyzer": "11.1.2",
"@svgr/webpack": "5.5.0",
"@tailwindcss/aspect-ratio": "0.2.1",
"@tailwindcss/forms": "0.3.3",
"@tailwindcss/line-clamp": "0.2.1",
"@testing-library/jest-dom": "5.14.1",
"@testing-library/react": "12.0.0",
"@testing-library/react-hooks": "7.0.2",
"@types/node": "16.7.2",
"@types/react": "17.0.19",
"@types/react-dom": "17.0.9",
"@typescript-eslint/eslint-plugin": "4.30.0",
"@typescript-eslint/parser": "4.30.0",
"autoprefixer": "10.3.4",
"cross-env": "7.0.3",
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-jest": "24.4.0",
"eslint-plugin-jest-formatting": "3.0.0",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.25.1",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-sonarjs": "0.10.0",
"eslint-plugin-testing-library": "4.12.0",
"jest": "27.1.0",
"jest-css-modules-transform": "4.3.0",
"next-transpile-modules": "8.0.0",
"npm-run-all": "4.1.5",
"postcss": "8.3.6",
"prettier": "2.3.2",
"rimraf": "3.0.2",
"shell-quote": "1.7.2",
"symlink-dir": "5.0.1",
"sync-directory": "2.2.22",
"tailwindcss": "2.2.9",
"ts-jest": "27.0.5",
"typescript": "4.4.2"
},
"dependencies": {
"@babel/core": "7.15.4",
"@emotion/react": "11.4.1",
"@emotion/styled": "11.3.0",
"@headlessui/react": "1.4.1",
"@heroicons/react": "1.0.4",
"@your-org/core-lib": "workspace:*",
"@your-org/ui-lib": "workspace:*",
"cross-env": "7.0.3",
"next": "11.1.2",
"next-secure-headers": "2.2.0",
"next-seo": "4.26.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"sharp": "0.29.0"
}
}