-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
83 lines (83 loc) · 3.07 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": "jdesignlab",
"version": "1.0.2",
"packageManager": "[email protected]",
"homepage": "https://github.com/DesignSystemLab/design-system",
"scripts": {
"test": "jest",
"lint": "eslint \"packages/**/*.{ts,tsx,js}\"",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"deploy-storybook": "gh-pages -d storybook-static",
"jds-publish": "yarn workspaces foreach npm publish --tolerate-republish --access=public",
"allpackages": "yarn workspaces foreach --no-private --verbose",
"build": "yarn workspaces foreach run build",
"build-clean": "yarn allpackages run rimraf _release/",
"build-release": "yarn allpackages exec rm -rf _release && yarn allpackages pack && yarn allpackages exec \"mkdir _release && tar zxvf package.tgz --directory _release && rm package.tgz\"",
"version": "changeset version",
"release": "yarn build-release && changeset publish",
"cruiser": "dependency-cruiser packages",
"cruiser-graph": "dependency-cruiser packages --output-type dot --output-to graph.dot"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.0",
"@emotion/babel-plugin": "^11.10.5",
"@emotion/babel-preset-css-prop": "^11.10.0",
"@emotion/react": "^11.10.5",
"@mdx-js/react": "^1.6.22",
"@storybook/addon-actions": "^6.5.16",
"@storybook/addon-docs": "^6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-interactions": "^6.5.16",
"@storybook/addon-links": "^6.5.16",
"@storybook/builder-webpack4": "^6.5.16",
"@storybook/manager-webpack4": "^6.5.16",
"@storybook/react": "^6.5.16",
"@storybook/testing-library": "^0.0.13",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.0",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"@yarnpkg/plugin-workspace-tools": "^4.0.0-rc.36",
"babel-loader": "^9.1.2",
"dependency-cruiser": "^13.0.1",
"eslint": "^8.48.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-hooks": "^0.4.3",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"gh-pages": "^5.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-preview": "^0.3.1",
"prettier": "^2.8.3",
"rimraf": "^4.1.2",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"tsup": "^6.7.0",
"typescript": "^4.9.4"
},
"dependencies": {
"@babel/runtime": "^7.21.5",
"@changesets/cli": "^2.26.1",
"@jdesignlab/j-provider": "workspace:^",
"@yarnpkg/pnpify": "^4.0.0-rc.36",
"react": "18.0.0",
"react-dom": "18.0.0"
}
}