-
Notifications
You must be signed in to change notification settings - Fork 100
/
Copy pathpackage.json
108 lines (108 loc) · 3.87 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
{
"name": "braid",
"private": true,
"version": "1.0.0",
"scripts": {
"test": "pnpm run generate && jest",
"test:integration": "jest --config integration/jest.config.js",
"dev": "nx run-many --target=dev",
"start": "nx run site:start",
"start:playroom": "nx run site:start:playroom",
"build": "nx run braid-design-system:build",
"build:docs-ui": "nx run docs-ui:build",
"build:site": "nx run site:build",
"postbuild": "concurrently --group 'pnpm:test:integration' 'pnpm:validate'",
"storybook": "nx run braid-design-system:storybook",
"storybook:build": "nx run braid-design-system:storybook:build",
"storybook:chromatic": "nx run braid-design-system:storybook:chromatic",
"lint": "concurrently --group 'pnpm:lint:*'",
"lint:eslint": "eslint --cache .",
"lint:depcheck": "pnpm --recursive exec depcheck --quiet",
"lint:manypkg": "manypkg check",
"lint:prettier": "prettier --cache --list-different .",
"lint:tsc": "tsc",
"validate": "nx run-many --target=validate",
"format": "concurrently --group 'pnpm:format:*'",
"format:eslint": "eslint --cache --fix .",
"format:prettier": "prettier --cache --write .",
"generate": "nx run braid-design-system:generate",
"generate:icons": "nx run braid-design-system:generate:icons",
"generate:snippets": "nx run braid-design-system:generate:snippets",
"generate:component-docs": "nx run site:generate:component-docs",
"deploy": "node scripts/deploy.js",
"post-commit-status": "node scripts/postCommitStatus.js",
"release": "pnpm prepare-publish && changeset publish",
"prepare-publish": "pnpm build && pnpm build:docs-ui && tsx scripts/copyReadme.cts",
"version": "changeset version && tsx scripts/versionComponentUpdates.cts && pnpm install --lockfile-only",
"changeset": "EDITOR=scripts/writeBraidFrontMatter.js ./node_modules/.bin/changeset add --open"
},
"repository": {
"type": "git",
"url": "https://github.com/seek-oss/braid-design-system.git"
},
"author": "SEEK",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"@babel/core": "^7.26.0",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@babel/runtime": "^7.26.0",
"@changesets/cli": "^2.27.11",
"@changesets/get-github-info": "^0.5.2",
"@crackle/cli": "^0.15.5",
"@eslint/compat": "^1.2.5",
"@manypkg/cli": "^0.21.4",
"@octokit/rest": "^18.12.0",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^29.5.14",
"@types/node": "^18.19.68",
"@types/react": "^18.3.18",
"@types/sanitize-html": "^2.13.0",
"@types/webpack-env": "^1.18.5",
"@vanilla-extract/jest-transform": "^1.1.11",
"babel-jest": "^29.7.0",
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-module-resolver": "^4.1.0",
"concurrently": "^7.6.0",
"depcheck": "^1.4.7",
"enquirer": "^2.4.1",
"escape-string-regexp": "^4.0.0",
"eslint": "^9.18.0",
"eslint-config-seek": "^14.0.0",
"fast-glob": "^3.3.2",
"fs-extra": "^10.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-watch-typeahead": "^2.2.2",
"js-yaml": "^4.1.0",
"nx": "^15.9.7",
"prettier": "^2.8.8",
"renovate-config-seek": "0.4.0",
"skott": "^0.32.1",
"tsx": "^4.19.2",
"typescript": "~5.5.4"
},
"volta": {
"node": "20.18.1"
},
"packageManager": "[email protected]",
"pnpm": {
"patchedDependencies": {
"panzoom": "patches/panzoom.patch",
"[email protected]": "patches/[email protected]"
},
"overrides": {
"eslint": "^9.18.0"
}
},
"manypkg": {
"workspaceProtocol": "require"
},
"skuSkipPostInstall": true,
"skuSkipConfigure": true,
"skuSkipValidatePeerDeps": true
}