-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
68 lines (68 loc) · 3.1 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
{
"type": "module",
"private": true,
"scripts": {
"clean-all": "bash ./scripts/clean.sh",
"clean-synth": "bash ./scripts/clean-synth.sh",
"npm:publish": "PROJEN_DISABLE_POST=1 yarn workspaces foreach run npm:publish $*",
"build": "PROJEN_DISABLE_POST=1 yarn workspaces foreach --topological-dev -v run build",
"projen": "PROJEN_DISABLE_POST=1 yarn workspaces foreach -v -t run projen",
"eslint": "PROJEN_DISABLE_POST=1 yarn workspaces foreach -v run eslint",
"prettier": "PROJEN_DISABLE_POST=1 yarn workspaces foreach -v run eslint",
"upgrade": "PROJEN_DISABLE_POST=1 yarn workspaces foreach run upgrade",
"npm:components:package": "PROJEN_DISABLE_POST=1 yarn workspaces foreach -v --topological --include '@amazon-codecatalyst/blueprint-util.*' --include '@amazon-codecatalyst/blueprint-component.*' --include '@amazon-codecatalyst/blueprints' run component:package",
"components:bump": "PROJEN_DISABLE_POST=1 yarn workspaces foreach -v --include '@amazon-codecatalyst/blueprint-util.*' --include '@amazon-codecatalyst/blueprint-component.*' --include '@amazon-codecatalyst/blueprints' run bump",
"npm:blueprints:package": "PROJEN_DISABLE_POST=1 yarn workspaces foreach -v --topological --include '@amazon-codecatalyst/blueprints.*' run blueprint:package",
"blueprints:bump": "PROJEN_DISABLE_POST=1 yarn workspaces foreach -v --include '@amazon-codecatalyst/blueprints.*' run bump",
"test": "yarn workspaces foreach -v --topological --include '@amazon-codecatalyst/blueprints.*' run test",
"test:update": "yarn workspaces foreach -v --topological --include '@amazon-codecatalyst/blueprints.*' run test:update",
"blueprints:preview": "yarn workspaces foreach -v --topological --include '@amazon-codecatalyst/blueprints.*' run blueprint:preview $*",
"blueprints:synth": "yarn workspaces foreach -v --topological --include '@amazon-codecatalyst/blueprints.*' run blueprint:synth $*",
"blueprints:resynth": "yarn workspaces foreach -v --topological --include '@amazon-codecatalyst/blueprints.*' run blueprint:resynth $*"
},
"packageManager": "[email protected]",
"workspaces": {
"packages": [
"./packages/**(!synth)/*"
]
},
"devDependencies": {
"@esbuild/linux-x64": "0.19.3",
"@types/node": "^18.16.1",
"@typescript-eslint/eslint-plugin": "*",
"@typescript-eslint/parser": "*",
"eslint": "*",
"eslint-config-airbnb": "*",
"eslint-config-node": "*",
"eslint-config-prettier": "*",
"eslint-plugin-import": "*",
"eslint-plugin-jsx-a11y": "*",
"eslint-plugin-node": "*",
"eslint-plugin-prettier": "*",
"eslint-plugin-react": "*",
"eslint-plugin-react-hooks": "*",
"husky": "^4.3.8",
"prettier": "^2.6.0",
"pretty-quick": "^3.1.3",
"ts-loader": "^9.4.1",
"ts-node": "^10",
"typescript": "4.x",
"webpack": "^5.62.1",
"yargs": "^16.2.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"pre-push": "yarn build"
}
},
"dependencies": {
"webpack-cli": "^4.9.1"
},
"resolutions": {
"projen": "0.71.112"
},
"engines": {
"npm": "6.14.13"
}
}