This repository has been archived by the owner on Jan 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
83 lines (83 loc) · 3.2 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
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "manifest-ui",
"private": true,
"repository": "project44/manifest-ui",
"contributors": [
"Brandon Clark"
],
"license": "MIT",
"scripts": {
"build": "yarn run build:cjs && yarn run build:esm && yarn run build:types && yarn build:tokens",
"build:cjs": "yarn run beemo babel --workspaces='*/!(tokens)'",
"build:esm": "yarn run beemo babel --workspaces='*/!(tokens)' --esm",
"build:tokens": "yarn workspace @manifest-ui/tokens build:tokens",
"build:types": "yarn run beemo typescript --build",
"clean": "yarn run clean:build && yarn run clean:types",
"clean:build": "rimraf 'packages/**/*/{lib,esm}'",
"clean:types": "rimraf 'packages/**/*/{dts,*.tsbuildinfo}'",
"coverage": "yarn run test --coverage",
"dev": "yarn run dev:build && yarn run dev:babel && yarn run storybook:dev",
"dev:build": "yarn run build",
"dev:babel": "yarn run beemo create-config babel",
"format": "yarn format:eslint && yarn format:prettier",
"format:eslint": "yarn run beemo eslint --fix packages/*/src/**/*.ts",
"format:prettier": "yarn run beemo prettier",
"lint": "yarn run lint:eslint && yarn run lint:types",
"lint:eslint": "yarn run beemo eslint",
"lint:types": "yarn run beemo typescript --noEmit --emitDeclarationOnly false",
"prepare": "husky install && beemo create-config babel eslint prettier",
"storybook:dev": "start-storybook -p 6006",
"storybook:build": "build-storybook -o dist",
"test": "yarn run beemo jest"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@changesets/changelog-github": "^0.4.2",
"@changesets/cli": "^2.20.0",
"@commitlint/cli": "^16.0.3",
"@commitlint/config-conventional": "^16.0.0",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@manifest-ui/vessel-dev": "^0.1.0",
"@storybook/addon-a11y": "^6.4.19",
"@storybook/addon-docs": "^6.4.19",
"@storybook/addon-essentials": "^6.4.19",
"@storybook/addon-storysource": "^6.4.19",
"@storybook/addons": "^6.4.19",
"@storybook/react": "^6.4.19",
"@storybook/theming": "^6.4.19",
"@testing-library/dom": "^8.11.2",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.0",
"@types/jest-axe": "^3.5.3",
"@types/lodash.camelcase": "^4.3.6",
"@types/lodash.capitalize": "^4.2.6",
"@types/lodash.get": "^4.4.6",
"@types/lodash.isempty": "^4.4.6",
"@types/lodash.isnumber": "^3.0.6",
"@types/lodash.isstring": "^4.0.7",
"@types/lodash.map": "^4.6.13",
"@types/lodash.merge": "^4.6.6",
"@types/lodash.mergewith": "^4.6.6",
"@types/lodash.omitby": "^4.6.6",
"@types/lodash.uniqueid": "^4.0.6",
"@types/node": "^17.0.10",
"@types/react": "^17.0.38",
"@types/react-date-range": "^1.4.3",
"@types/styled-system": "^5.1.15",
"@types/styled-system__css": "^5.0.16",
"husky": "^7.0.4",
"jest-axe": "^5.0.1",
"lint-staged": "^12.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"storybook-addon-theme-playground": "^2.1.0",
"ts-node": "^10.7.0",
"yarn-deduplicate": "^3.1.0"
}
}