-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.89 KB
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": "uswds-elements-monorepo",
"private": true,
"type": "module",
"workspaces": ["packages/*"],
"repository": {
"type": "git",
"url": "git+https://github.com/uswds/uswds-elements.git"
},
"scripts": {
"build": "npm run build --workspace=@uswds/tokens && npm run build --workspace=@uswds/elements",
"build:watch": "npm run build:watch --workspace=@uswds/elements",
"dev": "npm run dev --workspace=@uswds/elements",
"federalist": "npm run pages",
"fix-permissions": "sudo chown -R $(id -u):$(id -g) .",
"pages": "npm run storybook:build && cp -r packages/elements/storybook-static _site",
"prepare": "husky",
"prettier:js": "npm run prettier:js --workspace=@uswds/elements",
"prettier:js:fix": "npm run prettier:js:fix --workspace=@uswds/elements",
"prettier:md": "npm run prettier:md --workspace=@uswds/elements",
"prettier:md:fix": "npm run prettier:md:fix --workspace=@uswds/elements",
"start": "npm run start --workspace=@uswds/elements",
"storybook": "npm run storybook --workspace=@uswds/elements",
"storybook:build": "npm run storybook:build --workspace=@uswds/elements",
"storybook:serve": "npm run storybook:serve --workspace=@uswds/elements",
"stylelint": "npm run stylelint --workspace=@uswds/elements",
"stylelint:fix": "npm run stylelint:fix --workspace=@uswds/elements",
"manifest:build": "npm run manifest:build --workspace=@uswds/elements",
"manifest:watch": "npm run manifest:watch --workspace=@uswds/elements",
"release": "npm run build && changeset publish",
"test": "npm run test --workspaces --if-present",
"test:ci": "npm run test:ci --workspaces --if-present",
"test:storybook:ci": "npm run test:storybook:ci --workspace=@uswds/elements",
"vite:preview": "npm run vite:preview --workspace=@uswds/elements"
},
"devDependencies": {
"@changesets/cli": "^2.29.7",
"husky": "^9.1.7"
}
}