-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.46 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
{
"name": "1ff-react-chat-ui",
"version": "0.0.28",
"type": "module",
"description": "UI to chat",
"module": "dist/index.es.js",
"main": "dist/index.es.js",
"exports": {
".": "./dist/index.es.js"
},
"keywords": [
"chatui",
"react",
"ai",
"frontend"
],
"repository": {
"type": "git",
"url": "https://github.com/1FF/react-chat-ui"
},
"files": [
"/dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "NODE_ENV=development vite",
"prod": "NODE_ENV=production vite",
"serve": "vite serve --host",
"build": "tsc && vite build",
"preview": "vite preview",
"tests": "jest --testPathPattern=/__tests__",
"lint": "eslint src/**/*.{js,jsx,ts,tsx,json}",
"lint:fix": "eslint --fix 'src/**/*.{js,jsx,ts,tsx,json}'"
},
"peerDependencies": {
"@reduxjs/toolkit": "^1.9.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^9.0.1",
"react-redux": "^8.1.2",
"redux-persist": "^6.0.0",
"socket.io-client": "^4.7.5"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.22.20",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.23.3",
"@faker-js/faker": "^8.1.0",
"@reduxjs/toolkit": "^1.9.5",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.5",
"@types/react": "^18.2.47",
"@types/react-dom": "^18.2.18",
"@types/redux-state-sync": "^3.1.10",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"@vitejs/plugin-react": "^4.0.4",
"autoprefixer": "^10.4.15",
"eslint": "^8.52.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",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.31",
"prettier": "^3.2.5",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^9.0.1",
"react-redux": "^8.1.2",
"redux-persist": "^6.0.0",
"redux-state-sync": "^3.1.4",
"tailwind-variants": "^0.1.14",
"tailwindcss": "^3.3.3",
"ts-jest": "^29.1.1",
"vite": "^5.2.6",
"vite-plugin-css-injected-by-js": "^3.5.1",
"vite-plugin-node-polyfills": "^0.22.0"
},
"dependencies": {
"eslint-plugin-simple-import-sort": "^12.0.0",
"typescript": "^5.3.3"
}
}