-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 1.72 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
{
"name": "react-samay",
"version": "2.0.2",
"description": "Time picker for React.js",
"homepage": "https://github.com/sushantdhiman/react-samay",
"repository": {
"type": "git",
"url": "https://github.com/sushantdhiman/react-samay"
},
"type": "module",
"license": "MIT",
"source": "./src/index.tsx",
"types": "./types/index.d.ts",
"module": "./lib/index.esm.js",
"exports": {
".": "./lib/index.esm.js",
"./index.css": "./index.css"
},
"scripts": {
"storybook": "storybook dev -c .storybook",
"build-storybook": "storybook build -c .storybook -o .storybook-static",
"build": "rm -rf lib/* && parcel build",
"prettier": "prettier --write './(src|stories)/**/*.+(ts|tsx)'",
"lint": "eslint '{src,stories}/**/*.*'",
"tsc": "npx tsc"
},
"devDependencies": {
"@parcel/packager-ts": "^2.12.0",
"@parcel/transformer-typescript-types": "^2.12.0",
"@storybook/addon-webpack5-compiler-swc": "^1.0.3",
"@storybook/react": "^8.1.5",
"@storybook/react-webpack5": "^8.1.5",
"@types/raf": "^3.4.3",
"@types/react": "^18.x",
"@types/react-dom": "^18.x",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.34.2",
"parcel": "^2.12.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"storybook": "^8.1.5",
"typescript": "^5.4.5"
},
"peerDependencies": {
"react": ">=17",
"react-dom": ">=17"
},
"dependencies": {
"classnames": "^2.5.1",
"date-fns": "^3.6.0",
"focus-trap-react": "^10.2.3",
"raf": "^3.4.1"
},
"keywords": [
"react",
"react-time-picker",
"time-picker",
"time",
"picker"
]
}