-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.92 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.92 KB
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
{
"name": "@recklyss/hand-drawn-ui",
"private": false,
"version": "0.0.5",
"type": "module",
"files": [
"dist"
],
"repository": {
"url": "https://registry.npmjs.org/"
},
"main": "./dist/hand-drawn-ui.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc && vite build",
"lint": "eslint ./src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"prepare": "husky",
"test": "jest",
"test:ci": "echo $(node -v) &&CI=true vitest --silent",
"test:staged": "jest --silent --passWithNoTests --findRelatedTests ",
"storybook": "storybook dev -p 8899",
"release": "semantic-release",
"build-storybook": "storybook build",
"component": "yo ./generators/component"
},
"dependencies": {
"dayjs": "^1.11.13",
"react-icons": "^4.8.0",
"wired-elements": "^3.0.0-rc.6"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.8.0",
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"@lit/react": "^1.0.6",
"@semantic-release/git": "^10.0.1",
"@storybook/addon-essentials": "^8.2.9",
"@storybook/addon-interactions": "^8.2.9",
"@storybook/addon-links": "^8.2.9",
"@storybook/addon-onboarding": "^8.2.9",
"@storybook/blocks": "^8.2.9",
"@storybook/react": "^8.2.9",
"@storybook/react-vite": "^8.2.9",
"@storybook/test": "^8.2.9",
"@testing-library/react": "^14.2.1",
"@types/jest": "^29.5.12",
"@types/react": "^18.2.56",
"@types/react-dom": "^18.2.19",
"@types/styled-components": "^5.1.34",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"@vitejs/plugin-react-swc": "^3.5.0",
"chalk": "^5.3.0",
"classnames": "^2.5.1",
"eslint": "^8.56.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"eslint-plugin-storybook": "^0.8.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"semantic-release": "^23.0.2",
"storybook": "^8.2.9",
"styled-components": "^6.1.8",
"ts-jest": "^29.1.2",
"typescript": "^5.2.2",
"vite": "^5.1.4",
"vite-plugin-dts": "^4.1.0",
"yeoman-generator": "^7.1.1",
"yo": "^5.0.0",
"yosay": "^3.0.0"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^6.1.8"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css,scss,md}": "prettier --write",
"*.{js,jsx,ts,tsx}": "npm run test:staged"
},
"description": "A delightful React UI library inspired by [Wired.js](https://wiredjs.com/). It's paired with Google's 'Schoolbell' font for that perfect sketchy look!",
"directories": {
"test": "test"
},
"keywords": [
"hand",
"drawing",
"ui"
],
"author": "recklyss",
"license": "ISC",
"homepage": "https://github.com/recklyss/hand-drawing-ui"
}