-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
101 lines (101 loc) · 4.21 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
{
"name": "aws-northstar-monorepo",
"version": "0.0.1-development",
"description": "NorthStar Design System Monorepo",
"private": true,
"homepage": "https://northstar.aws-prototyping.cloud/",
"keywords": [
"ui",
"design-system",
"front-end",
"web",
"react",
"react-component",
"aws-northstar"
],
"packageManager": "[email protected]",
"scripts": {
"build": "yarn workspaces foreach --exclude aws-northstar-demo-ui --exclude aws-northstar-demo-legacy --parallel run build",
"check:all": "yarn test:ci && yarn build && yarn storybook:build && yarn styleguide:build",
"license:check": "yarn workspaces foreach --exclude aws-northstar-demo-ui --exclude aws-northstar-demo-legacy --parallel run license:check",
"lint:fix": "eslint --fix --ext .ts --ext .tsx --ext .js --ext .jsx .",
"lint": "eslint --max-warnings 0 --ext .ts --ext .tsx --ext .js --ext .jsx .",
"lint-staged": "lint-staged",
"storybook:build": "yarn workspaces foreach --exclude aws-northstar-demo-ui --exclude aws-northstar-demo-legacy run storybook:build",
"storybook:legacy": "yarn workspace aws-northstar run storybook",
"storybook": "yarn workspace @aws-northstar/ui run storybook",
"styleguide:build": "yarn workspace aws-northstar run styleguidist build",
"styleguide": "yarn workspace aws-northstar run styleguidist server",
"test:ci": "yarn lint && yarn workspaces foreach --exclude aws-northstar-demo-ui --exclude aws-northstar-demo-legacy run test:ci && yarn license:check && git secrets --scan",
"test": "yarn workspaces foreach --exclude aws-northstar-demo-ui --exclude aws-northstar-demo-legacy run test",
"prepare": "husky install",
"release": "yarn workspaces foreach --exclude aws-northstar-monorepo run semantic-release -e semantic-release-monorepo"
},
"lint-staged": {
"**.(js|jsx|ts|tsx)": [
"yarn lint:fix"
]
},
"author": "Amazon Web Services",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/aws/aws-northstar"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/github": "^8.0.7",
"@semantic-release/npm": "patch:@semantic-release/[email protected]#./patches/@semantic-release+npm.9.0.2.patch",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/license-checker": "^25.0.3",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "6.6.0",
"babel-eslint": "^10.1.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-flowtype": "^8.0.2",
"eslint-plugin-header": "^3.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.13",
"git-conventional-commits": "^2.6.3",
"husky": "^8.0.3",
"license-checker": "^25.0.1",
"lint-staged": "^13.1.0",
"oss-attribution-generator": "^1.7.1",
"prettier": "^2.8.8",
"semantic-release": "^19.0.5",
"semantic-release-monorepo": "^7.0.5",
"typescript": "^4.8.4"
},
"resolutions": {
"d3-color": "^3.1.0",
"glob-parent": "^5.1.2",
"trim": "^0.0.3",
"trim-newlines": "^3.0.1",
"terser": "^5.15.1",
"react-docgen-typescript": "2.2.2",
"npm/chalk": "^4.1.2",
"npm": "^8.11.0",
"underscore": "^1.12.1",
"nth-check": "^2.0.1",
"deep-extend": "^0.5.1",
"debug": "^2.6.9",
"@semantic-release/npm": "patch:@semantic-release/[email protected]#./patches/@semantic-release+npm.9.0.2.patch",
"yaml": "^2.2.2",
"semver": "^7.5.3",
"postcss": "^8.4.38",
"braces": "^3.0.3"
},
"workspaces": {
"packages": [
"packages/*",
"packages/examples/*"
]
}
}