-
-
Notifications
You must be signed in to change notification settings - Fork 215
/
package.json
101 lines (101 loc) · 3.09 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
{
"name": "@your-org/ui-lib",
"version": "3.15.2",
"private": true,
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"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.13.3",
"@emotion/styled": "11.13.0",
"@storybook/addon-essentials": "8.4.5",
"@storybook/addon-interactions": "8.4.5",
"@storybook/addon-links": "8.4.5",
"@storybook/blocks": "8.4.5",
"@storybook/react": "8.4.5",
"@storybook/react-vite": "8.4.5",
"@storybook/test": "8.4.5",
"@tailwindcss/forms": "0.5.9",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.0.1",
"@testing-library/user-event": "14.5.2",
"@types/node": "22.9.0",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@vitejs/plugin-react-swc": "3.7.1",
"@vitest/coverage-v8": "2.1.5",
"@your-org/eslint-config-bases": "workspace:^",
"autoprefixer": "10.4.20",
"cross-env": "7.0.3",
"eslint": "8.57.1",
"eslint-plugin-tailwindcss": "3.17.5",
"npm-run-all2": "7.0.1",
"postcss": "8.4.49",
"prettier": "3.3.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"require-from-string": "2.0.2",
"rimraf": "6.0.1",
"rooks": "7.14.1",
"sirv": "3.0.0",
"sirv-cli": "3.0.0",
"storybook": "8.4.5",
"tailwindcss": "3.4.15",
"tsup": "8.3.5",
"typescript": "5.6.3",
"vite": "5.4.11",
"vite-tsconfig-paths": "5.1.3",
"vitest": "2.1.5"
},
"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
}
}
}