forked from belgattitude/nextjs-monorepo-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 3.99 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
{
"name": "@your-org/ui-lib",
"version": "3.10.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": "packages/ui-lib"
},
"author": {
"name": "Vanvelthem Sébastien",
"url": "https://github.com/belgattitude"
},
"sideEffects": false,
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf --no-glob ./dist && cross-env NODE_ENV=production microbundle --tsconfig ./tsconfig.build.json --jsx React.createElement --jsxFragment React.Fragment -f cjs,es --no-compress",
"build-react17jsx": "microbundle --tsconfig ./tsconfig.build.json --jsx jsx --jsxImportSource react --globals react/jsx-runtime=jsx --compress",
"dev": "microbundle watch --tsconfig ./tsconfig.build.json",
"clean": "rimraf --no-glob ./dist ./tsconfig.tsbuildinfo ./node_modules/.cache",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx",
"typecheck": "tsc --project ./tsconfig.json --noEmit",
"test": "run-s test-unit",
"test-unit": "echo \"No unit tests yet\"",
"fix-all-files": "eslint . --ext .ts,.tsx,.js,.jsx --fix",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook --output-dir build/storybook"
},
"dependencies": {
"@your-org/core-lib": "workspace:^"
},
"devDependencies": {
"@babel/core": "7.17.5",
"@emotion/babel-preset-css-prop": "11.2.0",
"@emotion/react": "11.8.1",
"@emotion/styled": "11.8.1",
"@mdx-js/react": "2.0.0",
"@storybook/addon-actions": "6.4.19",
"@storybook/addon-docs": "6.4.19",
"@storybook/addon-essentials": "6.4.19",
"@storybook/addon-links": "6.4.19",
"@storybook/addon-postcss": "2.0.0",
"@storybook/addon-storysource": "6.4.19",
"@storybook/react": "6.4.19",
"@tailwindcss/aspect-ratio": "0.4.0",
"@tailwindcss/forms": "0.4.0",
"@tailwindcss/line-clamp": "0.3.1",
"@testing-library/jest-dom": "5.16.2",
"@testing-library/react": "12.1.3",
"@testing-library/react-hooks": "7.0.2",
"@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",
"babel-loader": "8.2.3",
"babel-plugin-macros": "3.1.0",
"babel-plugin-polyfill-corejs3": "0.5.2",
"core-js": "3.21.1",
"cross-env": "7.0.3",
"eslint": "8.10.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-storybook": "0.5.7",
"eslint-plugin-testing-library": "5.0.5",
"jest": "27.5.1",
"microbundle": "0.14.2",
"npm-run-all": "4.1.5",
"postcss": "8.4.7",
"postcss-flexbugs-fixes": "5.0.2",
"prettier": "2.5.1",
"react": "18.0.0-rc.0-next-fa816be7f-20220128",
"react-dom": "18.0.0-rc.0-next-fa816be7f-20220128",
"rimraf": "3.0.2",
"rooks": "5.10.0",
"tailwindcss": "3.0.23",
"ts-jest": "27.1.3",
"tsconfig-paths-webpack-plugin": "3.5.2",
"typescript": "4.5.5",
"webpack": "5.69.1"
},
"peerDependencies": {
"@emotion/react": "^11.7.0",
"@emotion/styled": "^11.6.0",
"react": "^17.0.2 || >= 18.0.0-rc.0",
"react-dom": "^17.0.2 || >= 18.0.0-rc.0"
},
"peerDependenciesMeta": {
"@emotion/react": {
"optional": false
},
"@emotion/styled": {
"optional": false
},
"react": {
"optional": false
},
"react-dom": {
"optional": false
}
}
}