forked from belgattitude/nextjs-monorepo-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 3.14 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
{
"name": "@your-org/ui-lib",
"version": "3.15.1",
"private": true,
"module": "dist/index.esm.js",
"sideEffects": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"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": "packages/ui-lib"
},
"scripts": {
"build": "echo \"Unrequired and disabled when using tsonfig paths aliases, run 'build:force' to test a build.\"",
"build:force": "tsup",
"build-storybook": "storybook build --output-dir build/storybook",
"clean": "rimraf ./dist ./build ./tsconfig.tsbuildinfo ./node_modules/.cache",
"dev": "tsup --watch",
"fix-all-files": "eslint . --ext .ts,.tsx,.js,.jsx,.cjs,.mjs --fix",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx,.cjs,.mjs --cache --cache-location ../../.cache/eslint/ui-lib.eslintcache",
"serve-storybook": "sirv build/storybook --cors --port 8888",
"storybook": "storybook dev -p 6006",
"test": "run-s test-unit",
"test-unit": "echo \"No unit tests yet\"",
"typecheck": "tsc --project ./tsconfig.json --noEmit"
},
"dependencies": {
"@your-org/ts-utils": "workspace:^"
},
"devDependencies": {
"@emotion/react": "11.11.1",
"@emotion/styled": "11.11.0",
"@storybook/addon-essentials": "7.2.2",
"@storybook/addon-interactions": "7.2.2",
"@storybook/addon-links": "7.2.2",
"@storybook/blocks": "7.2.2",
"@storybook/react": "7.2.2",
"@storybook/react-vite": "7.2.2",
"@storybook/testing-library": "0.2.0",
"@tailwindcss/aspect-ratio": "0.4.2",
"@tailwindcss/forms": "0.5.4",
"@testing-library/dom": "9.3.1",
"@testing-library/jest-dom": "5.17.0",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.4.3",
"@types/jest": "29.5.3",
"@types/node": "20.4.5",
"@types/react": "18.2.20",
"@types/react-dom": "18.2.7",
"@vitest/coverage-v8": "0.34.1",
"@your-org/eslint-config-bases": "workspace:^",
"autoprefixer": "10.4.14",
"cross-env": "7.0.3",
"eslint": "8.46.0",
"eslint-plugin-tailwindcss": "3.13.0",
"jest": "29.6.2",
"jest-environment-jsdom": "29.6.2",
"npm-run-all": "4.1.5",
"postcss": "8.4.27",
"prettier": "3.0.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"require-from-string": "2.0.2",
"rimraf": "5.0.1",
"rooks": "7.14.1",
"sirv": "2.0.3",
"sirv-cli": "2.0.2",
"storybook": "7.2.2",
"tailwindcss": "3.3.3",
"ts-jest": "29.1.1",
"tsup": "7.2.0",
"typescript": "5.1.6",
"vite": "4.4.9",
"vite-tsconfig-paths": "4.2.0",
"vitest": "0.34.1"
},
"peerDependencies": {
"@emotion/react": "^11.10.8",
"@emotion/styled": "^11.10.8",
"@types/react": "^18.2.11",
"@types/react-dom": "^18.2.4",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"@types/react-dom": {
"optional": true
}
}
}