-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 3.19 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@oncehub/ui-react",
"private": false,
"version": "1.4.21",
"repository": {
"type": "git",
"url": "https://github.com/scheduleonce/once-ui-react"
},
"files": [
"dist",
"README.md"
],
"main": "./dist/ui-react.umd.js",
"module": "./dist/ui-react.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/ui-react.es.js",
"require": "./dist/ui-react.umd.js",
"styles": "./dist/index.css"
},
"./components/select": "./dist/components/select/*",
"./components/multi-select": {
"types": "./dist/components/multi-select/multi-select.type.d.ts"
}
},
"engines": {
"node": "18"
},
"scripts": {
"dev": "storybook dev -p 6006",
"build": "storybook build",
"build:lib": "tsc && vite build",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"fix:lint": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"test:prettier": "prettier --check --ignore-unknown \"src/**/*.{ts,tsx,js,mdx}\"",
"fix:prettier": "prettier --write --ignore-unknown \"src/**/*.{ts,tsx,js,mdx}\"",
"test": "vitest",
"test:cov": "vitest run --coverage",
"prepare": "husky install",
"prepack": "json -f package.json -I -e \"delete this.devDependencies; delete this.dependencies\""
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@headlessui/react": "^1.7.17",
"@heroicons/react": "^2.0.18",
"@oncehub/relative-luminance": "^2.1.0",
"@storybook/addon-essentials": "^7.5.0",
"@storybook/addon-interactions": "^7.5.0",
"@storybook/addon-links": "^7.5.0",
"@storybook/addon-styling": "^1.3.7",
"@storybook/blocks": "^7.5.0",
"@storybook/react": "^7.5.0",
"@storybook/react-vite": "^7.5.0",
"@storybook/testing-library": "^0.2.2",
"@testing-library/react": "14.0.0",
"@types/node": "^20.8.9",
"@types/react": "^18.2.33",
"@types/react-dom": "^18.2.13",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react": "^4.1.0",
"@vitest/coverage-v8": "^0.34.6",
"autoprefixer": "^10.4.16",
"babel-loader": "9.1.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "9.0.0",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-n": "^16.2.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-storybook": "^0.6.15",
"husky": "8.0.3",
"jsdom": "22.1.0",
"json": "11.0.0",
"lint-staged": "^15.0.1",
"postcss": "^8.4.31",
"prettier": "^3.0.3",
"prop-types": "15.8.1",
"react": "^18.2.0",
"react-device-detect": "^2.2.3",
"react-dom": "^18.2.0",
"sass": "^1.69.5",
"storybook": "^7.5.0",
"tailwindcss": "^3.3.5",
"typescript": "^5.2.2",
"vite": "^4.5.5",
"vite-plugin-dts": "4.3.0",
"vite-plugin-css-injected-by-js": "^3.5.0",
"vitest": "^0.34.6"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,css,md}": [
"prettier -w"
]
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}