forked from aws-amplify/amplify-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 4.37 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
{
"private": true,
"scripts": {
"build": "turbo run build --filter=./packages/* --filter=!./packages/angular --filter=./packages/angular/projects/ui-angular",
"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",
"react-geo": "yarn workspace @aws-amplify/ui-react-geo",
"react-storage": "yarn workspace @aws-amplify/ui-react-storage",
"react-core": "yarn workspace @aws-amplify/ui-react-core",
"react-core-notifications": "yarn workspace @aws-amplify/ui-react-core-notifications",
"react-liveness": "yarn workspace @aws-amplify/ui-react-liveness",
"react-native": "yarn workspace @aws-amplify/ui-react-native",
"react-notifications": "yarn workspace @aws-amplify/ui-react-notifications",
"ui": "yarn workspace @aws-amplify/ui",
"vue": "yarn workspace @aws-amplify/ui-vue",
"angular-example": "yarn workspace @aws-amplify/ui-angular-example",
"docs": "yarn workspace @aws-amplify/ui-docs",
"next-example": "yarn workspace @aws-amplify/ui-next-example",
"react-example": "yarn workspace @aws-amplify/ui-next-example",
"react-native-example": "yarn workspace @aws-amplify/ui-react-native-example",
"vue-example": "yarn workspace @aws-amplify/ui-vue-example",
"e2e": "yarn workspace @aws-amplify/ui-e2e",
"environments": "yarn workspace @aws-amplify/ui-environments",
"test": "yarn ui test && yarn react-core test && yarn react test && yarn react-native test && yarn e2e test",
"prepare": "husky install",
"version:next": "yarn changeset version --snapshot next-$(git rev-parse --short=7 HEAD) && yarn generateVersions && yarn angular build",
"publish:next": "yarn changeset publish --tag next",
"version:liveness": "yarn changeset version --snapshot liveness-$(git rev-parse --short=7 HEAD) && yarn generateVersions && yarn angular build",
"publish:liveness": "yarn changeset publish --tag liveness",
"version:studio": "yarn changeset version --snapshot studio-$(git rev-parse --short=7 HEAD) && yarn generateVersions && yarn angular build",
"publish:studio": "yarn changeset publish --tag studio",
"version:latest": "yarn changeset version && yarn generateVersions && yarn angular build",
"publish:latest": "yarn changeset publish",
"version:hotfix": "yarn changeset && yarn bumpVersions && yarn angular build",
"publish:hotfix": "yarn changeset publish --tag hotfix",
"generateVersions": "node scripts/generateVersion",
"bumpVersions": "yarn changeset version && yarn generateVersions"
},
"workspaces": {
"packages": [
"docs",
"environments",
"examples/*",
"packages/*",
"packages/angular/projects/ui-angular",
"packages/configs/eslint"
],
"nohoist": [
"**/next",
"**/@radix-ui",
"**/@radix-ui/**",
"**/react",
"**/react-dom",
"**/react-map-gl",
"**/react-native",
"**/react-native/**",
"**/react-native-safe-area-context",
"**/react-native-safe-area-context/**",
"**/rollup",
"**/use-sync-external-store",
"**/use-isomorphic-layout-effect",
"**/use-isomorphic-layout-effect/**"
]
},
"resolutions": {
"@sideway/formula": "^3.0.1",
"@types/react": "17.0.47",
"**/@angular-devkit/build-angular/minimatch": "3.0.5",
"**/@angular-devkit/build-angular/webpack": "^5.76.0",
"**/@cucumber/cucumber/**/semver": "7.5.4",
"**/@size-limit/webpack/webpack": "^5.76.0",
"**/serve/serve-handler/minimatch": "3.0.5",
"browserslist": "^4.16.15",
"cssnano-simple": "3.0.2",
"docs/next-plugin-preval/webpack": "^5.76.0",
"ejs": "^3.1.7",
"glob-parent": "^6.0.2",
"highlight.js": "^10.4.1",
"immer": "^9.0.6",
"json5": "^2.2.1",
"loader-utils": "2.0.4",
"node-forge": "1.3.0",
"nth-check": "^2.0.1",
"prismjs": "^1.25.0",
"react-dev-utils": "^11.0.4",
"shell-quote": "1.7.3",
"tough-cookie": "4.1.3",
"trim-newlines": "3.0.1",
"yaml": "2.2.2"
},
"devDependencies": {
"@changesets/changelog-github": "0.4.1",
"@changesets/cli": "^2.26.2",
"husky": ">=6",
"lint-staged": ">=10",
"prettier": "2.4.1",
"rimraf": "^3.0.2",
"turbo": "^1.2.8",
"typescript": "^4.6.3",
"wait-on": "^6.0.0"
}
}