-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
75 lines (75 loc) · 3.1 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
{
"name": "marigold-repo",
"version": "0.0.0",
"repository": "github:marigold-ui/marigold",
"private": true,
"license": "MIT",
"engines": {
"node": "20.x"
},
"packageManager": "[email protected]",
"dependencies": {
"@babel/core": "7.26.0",
"@changesets/changelog-git": "0.2.0",
"@changesets/cli": "2.27.11",
"@manypkg/get-packages": "2.2.2",
"@marigold/eslint-config": "workspace:*",
"@marigold/jest-config": "workspace:*",
"@marigold/prettier-config": "workspace:*",
"@marigold/tsconfig": "workspace:*",
"@parcel/watcher": "2.5.0",
"@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": "20.17.11",
"all-contributors-cli": "6.26.1",
"autoprefixer": "10.4.20",
"concurrently": "9.1.2",
"eslint": "9.13.0",
"husky": "9.1.7",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"next": "15.1.3",
"postcss-import": "16.1.0",
"postcss-loader": "8.1.1",
"prettier": "3.4.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"tailwindcss": "3.4.16",
"turbo": "2.2.3",
"typescript": "5.6.3",
"zx": "8.1.9"
},
"scripts": {
"start": "pnpm --filter @marigold/docs dev",
"watch": "concurrently pnpm:watch:tailwind pnpm:watch:storybook",
"watch:storybook": "FOLDERS=packages/components/src,packages/system/src pnpm --filter @marigold/storybook-config start",
"watch:tailwind": "zx scripts/watch-tailwind.mjs",
"build": "turbo run --filter \"@marigold/components...\" --filter \"@marigold/theme*...\" --filter \"@marigold/theme-preset...\" build",
"build:docs": "turbo run --filter @marigold/docs... build",
"build:storybook": "turbo run --filter @marigold/storybook-config... build",
"build:themes": "turbo run --filter \"@marigold/theme*...\" build",
"registry": "pnpm --filter @marigold/docs registry",
"build:component-props": "pnpm --filter @marigold/docs build:component-props",
"test": "jest --config jest.config.js",
"test:coverage": "jest --config jest.config.js --coverage --coverageReporters html",
"test:ci": "jest",
"clean": "rm -rf `find . -type d -name 'node_modules' -o -name 'dist' -o -name '.next' -o -name '.turbo' -o -name 'storybook-static'`",
"clean:build": "rm -rf `find . -type d -name 'dist'` coverage",
"lint": "eslint . --ignore-pattern node_modules --ignore-pattern dist --ignore-pattern packages/types/src/index.ts --ignore-pattern \".cache\" --ignore-pattern public",
"format": "prettier --write \"**/*\"",
"format:fix": "prettier --write \"**/*\" --fix",
"typecheck": "pnpm --filter @marigold/docs build && tsc --noEmit --resolveJsonModule --project tsconfig.check.json",
"contributor": "all-contributors",
"changeset": "changeset",
"release:notification": "zx scripts/create-slack-notification.mjs",
"slack": "zx scripts/slack-release-notification.mjs --quiet",
"prepare": "husky install",
"postinstall": "pnpm build"
},
"devDependencies": {
"@eslint/eslintrc": "3.1.0",
"@eslint/js": "9.13.0"
}
}