forked from seek-oss/braid-design-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 3.35 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
{
"name": "braid",
"private": true,
"version": "1.0.0",
"scripts": {
"test": "pnpm run generate && jest",
"start": "nx run site:start",
"start:playroom": "nx run site:start:playroom",
"build": "nx run braid-design-system:build",
"build:site": "nx run site:build",
"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:all": "nx run-many --target=lint",
"lint:manypkg": "manypkg check",
"lint:depcheck": "pnpm --recursive exec depcheck",
"format": "nx run-many --target format",
"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 && pnpm build:site && pnpm run deploy",
"prepare-publish": "pnpm build && 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.10.0",
"@babel/core": "^7.18.0",
"@babel/plugin-transform-runtime": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.17.12",
"@babel/runtime": "^7.18.0",
"@changesets/cli": "^2.22.0",
"@changesets/get-github-info": "^0.5.0",
"@crackle/cli": "^0.12.0",
"@manypkg/cli": "^0.19.1",
"@octokit/rest": "^18.12.0",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^29.0.0",
"@types/node": "^18.13.0",
"@types/react": "^18.0.21",
"@types/sanitize-html": "^2.6.2",
"@types/webpack-env": "^1.17.0",
"@vanilla-extract/jest-transform": "^1.0.2",
"babel-jest": "^29.0.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.3",
"enquirer": "^2.3.6",
"escape-string-regexp": "^4.0.0",
"eslint": "^8.21.0",
"eslint-config-seek": "^11.1.1",
"fast-glob": "^3.2.12",
"fs-extra": "^10.1.0",
"gh-pages": "^4.0.0",
"ignore-sync": "^7.0.0",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.0.0",
"jest-watch-typeahead": "^2.1.0",
"js-yaml": "^4.1.0",
"nx": "^15.6.3",
"prettier": "^2.8.2",
"renovate-config-seek": "0.4.0",
"surge": "^0.23.1",
"tsx": "^3.12.1",
"typescript": "^4.5.0"
},
"volta": {
"node": "18.15.0"
},
"packageManager": "pnpm@7.30.0",
"pnpm": {
"patchedDependencies": {
"panzoom@9.4.2": "patches/panzoom@9.4.2.patch",
"yoga-layout-prebuilt@1.10.0": "patches/yoga-layout-prebuilt@1.10.0.patch"
}
},
"skuSkipPostInstall": true,
"skuSkipConfigure": true,
"skuSkipValidatePeerDeps": true
}