-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 1023 Bytes
/
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
{
"name": "aws-cdk-workshop-2023",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"build": "nx build --project @aws-cdk/cdk-common",
"check-engines": "pnpm run check-engines -r",
"prebuild": "npm run check-engines",
"prepare": "husky install",
"prettier": "./node_modules/.bin/prettier --check \"**/*.{js,json,ts,yml,yaml}\"",
"prettier:write": "./node_modules/.bin/prettier --write \"**/*.{js,json,ts,yml,yaml}\""
},
"private": true,
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@nrwl/nx-cloud": "latest",
"commitizen": "^4.2.4",
"conventional-changelog-cli": "^2.2.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.8.0",
"fbjs-scripts": "^3.0.1",
"husky": "^7.0.4",
"nx": "15.8.5",
"prettier": "^2.6.2",
"rimraf": "^3.0.2"
},
"workspaces": [
"packages/*"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}