forked from aws-amplify/amplify-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.59 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
{
"private": true,
"scripts": {
"build": "turbo run build --include-dependencies --no-deps --scope=*@aws-amplify/*",
"clean": "turbo run clean && rimraf node_modules",
"setup": "yarn install && yarn build",
"refresh": "yarn clean && yarn setup",
"angular": "yarn workspace @aws-amplify/ui-angular",
"react": "yarn workspace @aws-amplify/ui-react",
"ui": "yarn workspace @aws-amplify/ui",
"vue": "yarn workspace @aws-amplify/ui-vue",
"angular-example": "yarn workspace angular-example",
"docs": "yarn workspace docs",
"next-example": "yarn workspace next-example",
"react-example": "yarn workspace next-example",
"vue-example": "yarn workspace vue-example",
"e2e": "yarn workspace e2e",
"environments": "yarn workspace environments",
"build:icons": "yarn react build:icons",
"test": "yarn ui test && yarn react test && yarn e2e test",
"prepare": "husky install",
"version:next": "yarn changeset version --snapshot next-$(git rev-parse --short=7 HEAD) && yarn angular build",
"publish:next": "yarn changeset publish --tag next",
"version:studio": "yarn changeset version --snapshot studio-$(git rev-parse --short=7 HEAD) && yarn angular build",
"publish:studio": "yarn changeset publish --tag studio",
"version:latest": "yarn changeset version && yarn angular build",
"publish:latest": "yarn changeset publish"
},
"workspaces": {
"packages": [
"docs",
"angular-docs",
"environments",
"examples/*",
"packages/*",
"packages/angular/projects/ui-angular"
],
"nohoist": [
"**/@radix-ui",
"**/@radix-ui/**",
"**/react",
"**/react-map-gl",
"**/use-sync-external-store",
"**/use-isomorphic-layout-effect",
"**/use-isomorphic-layout-effect/**"
]
},
"resolutions": {
"ansi-regex": "5.0.1",
"ansi-html": "0.0.8",
"async": "^3.2.2",
"cssnano-simple": "3.0.2",
"cssnano-preset-simple": "4.0.0",
"eventsource": "~2.0.2",
"fs-extra": "^10.0.0",
"glob-parent": "^6.0.2",
"json-schema": "^0.4.0",
"node-forge": "1.3.0",
"nth-check": "^2.0.1",
"prismjs": "^1.25.0",
"prism-react-renderer": "1.2.1",
"shell-quote": "1.7.3",
"trim": "^0.0.3",
"vscode-vue-languageservice": "0.27.26",
"ws": "^7.4.6"
},
"devDependencies": {
"@changesets/changelog-github": "0.4.1",
"@changesets/cli": "^2.16.0",
"husky": ">=6",
"lint-staged": ">=10",
"prettier": "2.4.1",
"rimraf": "^3.0.2",
"tsup": "^5.11.9",
"turbo": "^1.2.8",
"typescript": "^4.6.3",
"wait-on": "^6.0.0"
}
}