-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.5 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.5 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@saigontechnology/react-firebase-chat",
"version": "1.1.0",
"description": "A comprehensive ReactJS Firebase Chat library with real-time messaging, user authentication, and modern UI components",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"style": "dist/styles.css",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./styles": "./dist/styles.css",
"./package.json": "./package.json"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"build": "pnpm run clean && tsc && pnpm run build:css",
"build:css": "postcss src/styles.css -d dist && postcss src/components/*.css -d dist/components && postcss src/addons/*/*.css -d dist/addons --base src/addons && postcss src/styles/index.css -d dist/styles",
"clean": "rm -rf dist",
"dev": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src/**/*.{ts,tsx}",
"lint:fix": "eslint src/**/*.{ts,tsx} --fix",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"prepare": "pnpm run build",
"prepublishOnly": "pnpm run build",
"preversion": "pnpm run lint",
"version": "pnpm run build && git add -A dist",
"postversion": "git push && git push --tags",
"release:patch": "pnpm version patch && pnpm publish",
"release:minor": "pnpm version minor && pnpm publish",
"release:major": "pnpm version major && pnpm publish",
"release:beta": "pnpm version prerelease --preid=beta && pnpm publish --tag beta",
"dry-run": "pnpm publish --dry-run"
},
"packageManager": "pnpm@10.27.0",
"keywords": [
"react",
"firebase",
"chat",
"realtime",
"messaging",
"typescript",
"ui-components",
"react-component",
"firebase-chat",
"real-time-chat",
"chat-application"
],
"author": "SaiGon Technology <info@saigontechnology.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/saigontechnology/react-firebase-chat.git"
},
"bugs": {
"url": "https://github.com/saigontechnology/react-firebase-chat/issues"
},
"homepage": "https://github.com/saigontechnology/react-firebase-chat#readme",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"peerDependencies": {
"react": "^18.3.1",
"react-dom": ">=16.8.0"
},
"dependencies": {
"@types/node": "^24.0.7",
"clsx": "^2.1.1",
"date-fns": "^2.30.0",
"framer-motion": "^10.18.0",
"react-hot-toast": "^2.4.1",
"react-textarea-autosize": "^8.5.9"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.6.4",
"@storybook/react": "^7.6.4",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^14.3.1",
"@types/jest": "^29.5.8",
"@types/react": "^18.3.23",
"@types/react-dom": "^18.3.7",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"autoprefixer": "^10.4.16",
"eslint": "^8.54.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"firebase": "^10.14.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.32",
"postcss-cli": "^11.0.0",
"tailwindcss": "^3.3.6",
"ts-jest": "^29.4.0",
"typescript": "^5.3.2"
}
}