forked from belgattitude/nextjs-monorepo-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.7 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
{
"name": "@we-make-websites/ui-lib",
"version": "3.15.1",
"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 ./build ./tsconfig.tsbuildinfo ./node_modules/.cache",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx,.cjs,.mjs --cache --cache-location ../../.cache/eslint/ui-lib.eslintcache",
"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,.cjs,.mjs --fix",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook --output-dir build/storybook",
"serve-storybook": "sirv build/storybook --cors --port 8888"
},
"dependencies": {
"@we-make-websites/ts-utils": "workspace:^"
},
"peerDependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"@types/react-dom": {
"optional": true
}
},
"devDependencies": {
"@babel/core": "7.20.2",
"@emotion/babel-preset-css-prop": "11.10.0",
"@emotion/react": "11.10.5",
"@emotion/styled": "11.10.5",
"@mdx-js/react": "2.1.5",
"@storybook/addon-actions": "6.5.13",
"@storybook/addon-docs": "6.5.13",
"@storybook/addon-essentials": "6.5.13",
"@storybook/addon-links": "6.5.13",
"@storybook/addon-postcss": "2.0.0",
"@storybook/addon-storysource": "6.5.13",
"@storybook/builder-webpack5": "6.5.13",
"@storybook/manager-webpack5": "6.5.13",
"@storybook/react": "6.5.13",
"@tailwindcss/aspect-ratio": "0.4.2",
"@tailwindcss/forms": "0.5.3",
"@tailwindcss/line-clamp": "0.4.2",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.4.0",
"@testing-library/react-hooks": "8.0.1",
"@types/jest": "29.2.2",
"@types/node": "18.11.9",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.8",
"@we-make-websites/eslint-config-bases": "workspace:^",
"autoprefixer": "10.4.13",
"babel-loader": "9.1.0",
"babel-plugin-macros": "3.1.0",
"babel-plugin-polyfill-corejs3": "0.6.0",
"core-js": "3.26.0",
"cross-env": "7.0.3",
"eslint": "8.27.0",
"jest": "29.3.0",
"jest-environment-jsdom": "29.3.0",
"microbundle": "0.15.1",
"npm-run-all": "4.1.5",
"postcss": "8.4.18",
"postcss-flexbugs-fixes": "5.0.2",
"prettier": "2.7.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"require-from-string": "2.0.2",
"rimraf": "3.0.2",
"rooks": "7.4.2",
"sirv": "2.0.2",
"sirv-cli": "2.0.2",
"tailwindcss": "3.2.2",
"ts-jest": "29.0.3",
"tsconfig-paths-webpack-plugin": "4.0.0",
"typescript": "4.8.4",
"webpack": "5.74.0"
}
}