-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.55 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
{
"name": "@codrjs/design-library",
"private": false,
"version": "1.0.0",
"type": "module",
"exports": {
".": {
"require": "./cjs/index.js",
"import": "./esm/index.js",
"types": "./types/index.d.ts"
}
},
"main": "./cjs/index.js",
"module": "./esm/index.js",
"types": "./types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "npx http-server ./storybook-static",
"clean": "rm -rf ./dist",
"format": "prettier --write \"(src|?.storybook)/**/*.(ts|js|md)?x\"",
"lint": "eslint -c .eslintrc --ignore-path .eslintignore --ext .ts,.tsx src",
"test": "jest --config jest.config.json --passWithNoTests --coverage",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build --docs",
"build:esm": "tsc --project tsconfig.esm.json",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build:docker": "docker build -t design-library .",
"build": "yarn clean && yarn build:cjs && yarn build:esm && ./bin/post-build.sh"
},
"license": "MIT",
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"peerDependencies": {
"@tailwindcss/forms": "^0.5.3",
"tailwindcss": "^3.2.4"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.0.0",
"@storybook/addon-essentials": "^7.0.0-beta.54",
"@storybook/addon-interactions": "^7.0.0-beta.54",
"@storybook/addon-links": "^7.0.0-beta.54",
"@storybook/blocks": "^7.0.0-beta.54",
"@storybook/builder-vite": "^7.0.0-beta.54",
"@storybook/client-api": "^7.0.0-beta.54",
"@storybook/preview-web": "^7.0.0-beta.54",
"@storybook/react": "^7.0.0-beta.54",
"@storybook/react-vite": "^7.0.0-beta.54",
"@storybook/testing-library": "^0.0.14-next.1",
"@swc/jest": "^0.2.24",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"@vitejs/plugin-react": "^3.1.0",
"autoprefixer": "^10.4.13",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"jest": "^29.4.3",
"postcss": "^8.4.21",
"prop-types": "^15.8.1",
"rollup-plugin-typescript-paths": "^1.4.0",
"storybook": "^7.0.0-beta.54",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.3",
"vite": "^4.1.0",
"vite-plugin-eslint": "^1.8.1"
}
}