forked from Royal-Navy/design-system
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.76 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
{
"name": "moduk-design-system",
"private": true,
"workspaces": [
"packages/eslint-config-react",
"packages/icon-library",
"packages/react-component-library",
"packages/fonts",
"packages/cra-template-defencedigital",
"packages/design-tokens"
],
"engines": {
"node": "^16.13.0 || ^18.12.0"
},
"devDependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@commitlint/lint": "^17.0.0",
"@octokit/rest": "^19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"lerna": "^6.0.1",
"lint-staged": "^13.2.2",
"prettier": "^2.0.5"
},
"resolutions": {
"**/ansi-regex": "^5.0.1",
"**/git-url-parse": "^13.1.0",
"**/glob-parent": "^5.1.2",
"**/playwright": "^1.32.3",
"**/semver": "^7.5.3",
"**/trim": "^0.0.3",
"**/trim-newlines": "^3.0.1"
},
"prettier": {
"bracketSpacing": true,
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"repository": {
"type": "git",
"url": "https://github.com/defencedigital/mod-uk-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": "yarn lerna:run-version --conventional-prerelease=* --no-changelog -m \"chore(Prerelease): %v [skip ci]\"",
"lerna:version": "yarn 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",
"prepare": "husky install"
}
}