-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.7 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
{
"name": "crayon-ui",
"description": "Simple ui library for react",
"private": true,
"packageManager": "yarn@3.3.0",
"repository": {
"type": "git",
"url": "https://github.com/sage1991/crayon-ui.git"
},
"author": {
"name": "harry",
"email": "shsage91@gmail.com"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"crayon": "yarn workspace @crayon-ui/crayon",
"icons": "yarn workspace @crayon-ui/icons",
"utils": "yarn workspace @crayon-ui/utils",
"clean": "yarn workspaces foreach run clean",
"build": "yarn workspaces foreach run build",
"build:commonjs": "yarn workspaces foreach run build:commonjs",
"build:esm": "yarn workspaces foreach run build:esm",
"build:types": "yarn workspaces foreach run build:types",
"test:types": "yarn workspaces foreach run test:types",
"test:unit": "yarn workspaces foreach run test:unit",
"publish": "yarn workspaces foreach run generate-package-json && yarn changeset publish",
"version": "yarn install && yarn changeset version"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.18.13",
"@babel/preset-env": "^7.19.0",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@changesets/cli": "^2.26.1",
"@emotion/babel-plugin": "^11.10.2",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@storybook/addon-actions": "^7.5.2",
"@storybook/addon-essentials": "^7.5.2",
"@storybook/addon-interactions": "^7.5.2",
"@storybook/addon-links": "^7.5.2",
"@storybook/addon-styling": "^1.3.7",
"@storybook/react": "^7.5.2",
"@storybook/react-webpack5": "^7.5.2",
"@storybook/testing-library": "^0.2.2",
"@svgr/core": "^6.3.1",
"@types/jest": "^29.0.0",
"@types/node": "18.7.13",
"@types/react": "^18.0.18",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^6.9.1",
"babel-loader": "^8.2.5",
"chromatic": "^6.17.3",
"eslint": "8.22.0",
"eslint-config-next": "12.2.5",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^22.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.31.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-storybook": "^0.6.15",
"jest": "^29.0.2",
"jest-environment-jsdom": "^29.0.2",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^7.5.2",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"yargs": "^17.7.1"
}
}