-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
70 lines (70 loc) · 2.8 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
69
70
{
"name": "ncids",
"version": "3.2.0",
"description": "Monorepo for the NCI Design System",
"main": "index.js",
"repository": "https://github.com/NCIOCPL/ncids.git",
"author": "NCIOCPL",
"license": "ISC",
"private": true,
"workspaces": {
"packages": [
"packages/*",
"testing/*",
"docs"
]
},
"scripts": {
"lint": "lerna run lint",
"build": "lerna run build",
"clean:build": "lerna run clean:build",
"docs-artifact": "pnpm run docs-artifact:build && rimraf dist && pnpm run docs-artifact:copy",
"docs-artifact:build": "lerna run clean:build && pnpm run gatsby:build && pnpm run storybook:build && pnpm run example-site:build && pnpm run js-docs:build",
"docs-artifact:copy": "mkdirp dist/documentation-site && pnpm run gatsby:copy && pnpm run storybook:copy && pnpm run example-site:copy && pnpm run js-docs:copy",
"gatsby:build": "lerna run build --scope=nci-design-system --include-dependencies",
"gatsby:copy": "ncp docs/public dist/documentation-site",
"example-site:build": "lerna run build --scope=ncids-js-testing --include-dependencies",
"example-site:copy": "mkdirp dist/documentation-site/example-site && ncp testing/ncids-js-testing/dist dist/documentation-site/example-site",
"js-docs:build": "lerna run build:docs --scope=@nciocpl/ncids-js",
"js-docs:copy": "mkdirp dist/documentation-site/ncids-js && ncp packages/ncids-js/doc dist/documentation-site/ncids-js",
"storybook:build": "lerna run build --scope=ncids-css-testing --include-dependencies",
"storybook:copy": "mkdirp dist/documentation-site/storybook && ncp testing/ncids-css-testing/storybook-static dist/documentation-site/storybook",
"test": "lerna run test",
"test:css": "lerna run test:css",
"test:a11y": "lerna run test:a11y",
"test:css:generate": "lerna run test:css:generate",
"test:twig": "lerna run twigcs",
"clean:node_modules": "rm -rf node_modules/ docs/node_modules/ packages/ncids-css/node_modules/ packages/ncids-js/node_modules/ packages/ncids-react/node_modules/ testing/ncids-css-testing/node_modules/ testing/ncids-js-testing/node_modules/"
},
"devDependencies": {
"eslint": "~7.32.0",
"lerna": "~8.1.2",
"mkdirp": "^1.0.4",
"ncp": "~2.0.0",
"prettier": "2.2.1",
"rimraf": "~3.0.2"
},
"pnpm": {
"overrides": {
"rimraf": "$rimraf",
"eslint-plugin-react": "7.28.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"path": "~0.12.7",
"prettier": "2.2.1",
"typescript": "5.2.2",
"gatsby>webpack": "~5.89.0"
},
"patchedDependencies": {
"@uswds/[email protected]": "patches/@[email protected]"
}
},
"dependencies": {
"ci": "^2.3.0",
"md5": "^2.3.0"
},
"engines": {
"node": ">=20.0.0 <21.0.0",
"pnpm": ">=8.0.0 <10.0.0"
}
}