-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.94 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.94 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
{
"name": "chatkitty-example-react",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"lint": "eslint .",
"lint-fix": "prettier-eslint --write \"src/**/*.+(ts|tsx|js|jsx|json|yml|yaml|css|md)\"",
"eject": "react-scripts eject",
"prepare": "husky install"
},
"dependencies": {
"chatkitty": "^1.56.3",
"emoji-mart": "^3.0.1",
"framer-motion": "^4.1.17",
"invariant": "^2.2.4",
"moment": "^2.29.3",
"react": "^17.0.2",
"react-chat-ui-kit": "^1.0.0",
"react-dom": "^17.0.2",
"react-scripts": "^4.0.3",
"styled-components": "^5.3.5",
"styled-system": "^5.1.5",
"typescript": "^4.6.4",
"web-vitals": "^2.1.4"
},
"devDependencies": {
"@giphy/js-types": "^4.0.3",
"@types/emoji-mart": "^3.0.9",
"@types/invariant": "^2.2.35",
"@types/jest": "^27.5.0",
"@types/node": "^17.0.31",
"@types/react": "^18.0.8",
"@types/react-dom": "^18.0.3",
"@types/styled-components": "^5.1.25",
"@types/styled-system": "^5.1.15",
"@typescript-eslint/eslint-plugin": "4.0.1",
"@typescript-eslint/parser": "4.0.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.24.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.4",
"lint-staged": "^12.4.1",
"prettier": "^2.6.2",
"prettier-eslint": "^14.0.2",
"prettier-eslint-cli": "^5.0.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,md,html}": [
"prettier-eslint --write \"src/**/*.+(ts|tsx|js|jsx|json|yml|yaml|css|md)\""
]
}
}