-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
117 lines (117 loc) · 3.59 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
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "react-split-flap-display",
"version": "0.5.0",
"type": "module",
"main": "dist/index.umd.cjs",
"module": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs",
"types": "./dist/index.d.ts"
},
"./constants": {
"import": "./dist/constants.js",
"require": "./dist/constants.umd.cjs",
"types": "./dist/constants.d.ts"
}
},
"description": "React component for Split Flap (Solari) display",
"author": {
"name": "Robin Yang"
},
"homepage": "https://robonyong.github.io/react-split-flap-display",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/robonyong/react-split-flap-display.git"
},
"types": "dist/index.d.ts",
"devDependencies": {
"@chromatic-com/storybook": "^1.6.1",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@rollup/plugin-url": "^8.0.2",
"@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",
"@types/howler": "^2.2.11",
"@types/node": "^22.2.0",
"@types/react": "^18.2.61",
"@types/react-color": "^3.0.12",
"@types/react-dom": "^18.2.19",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"@vitejs/plugin-react-swc": "^3.6.0",
"chromatic": "^11.7.0",
"clsx": "^2.1.0",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.8.0",
"husky": "^9.0.11",
"install-peers-cli": "^2.2.0",
"lint-staged": "^15.2.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"pretty-quick": "^4.0.0",
"react-color": "^2.19.3",
"rollup": "^4.12.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-license": "^3.2.0",
"rollup-plugin-scss": "^4.0.0",
"rollup-plugin-typescript2": "^0.36.0",
"sass": "^1.71.1",
"storybook": "^8.2.9",
"stylelint": "^16.2.1",
"stylelint-config-standard-scss": "^13.0.0",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"typescript-plugin-css-modules": "^5.1.0",
"vite": "^5.1.4",
"vite-plugin-dts": "^4.0.2",
"vite-plugin-lib-inject-css": "^2.0.0",
"vite-plugin-sass-dts": "^1.3.17"
},
"peerDependencies": {
"react": "^16.0.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"build-demo": "vite build --config vite.config-demo.ts",
"preview": "vite preview",
"lint": "run-p -s lint:*",
"lint:js": "eslint \"**/*.{js,jsx,ts,tsx}\"",
"lint:css": "stylelint \"**/*.{css,scss}\"",
"lint:prettier": "prettier --check \"**/*.{js,json,jsx,ts,tsx}\"",
"format": "prettier -w \"**/*.{js,json,jsx,ts,tsx,css,scss}\" && eslint --fix \"**/*.{js,jsx,ts,tsx}\"",
"prepare": "husky",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"lint-staged": {
"*.{js,json,css,md,ts,tsx}": [
"prettier --write ."
],
"*.{js,ts,tsx}": "eslint --cache --fix",
"*.js": "eslint --cache --fix"
},
"files": [
"dist"
],
"dependencies": {
"howler": "^2.2.4"
}
}