-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
40 lines (40 loc) · 1.3 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
{
"name": "royal-navy-design-system",
"private": true,
"engines": {
"node": "^18.20.1"
},
"packageManager": "pnpm@9.1.1",
"devDependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@commitlint/lint": "^17.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"lerna": "^8.1.3",
"lint-staged": "^13.2.2",
"prettier": "^2.0.5"
},
"prettier": {
"bracketSpacing": true,
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"repository": {
"type": "git",
"url": "https://github.com/Royal-Navy/design-system.git"
},
"scripts": {
"build": "lerna run --stream --concurrency 1 build",
"lint": "lerna run --parallel lint",
"test": "lerna run --parallel test",
"storybook:static": "lerna run --parallel storybook:static",
"lerna:prerelease": "pnpm run lerna:run-version --conventional-prerelease=* --no-changelog -m \"chore(Prerelease): %v [skip ci]\"",
"lerna:version": "pnpm run lerna:run-version --conventional-graduate --create-release github -m \"chore(Release): %v\"",
"lerna:run-version": "lerna version --force-publish=* --tag-version-prefix=''",
"audit": "./scripts/audit/audit.sh",
"prepack": "husky install"
}
}