-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.66 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.66 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
{
"name": "react-quick-reactions",
"version": "2.0.2",
"description": "A popup emoji-reaction component for React.",
"private": false,
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"files": [
"/lib"
],
"scripts": {
"build": "yarn build:esm && yarn build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir lib/cjs",
"eslint": "eslint src/**"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dylandbl/react-quick-reactions.git"
},
"keywords": [
"react",
"reactions",
"react-component",
"quick-reactions",
"quick-emojis",
"emoji-reactions",
"emoji-popup",
"reaction-popup",
"front-end",
"UI"
],
"author": "Dylan Blair <dylandbl.dev@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dylandbl/react-quick-reactions/issues"
},
"homepage": "https://dylandbl.github.io/react-quick-reactions",
"peerDependencies": {
"react": ">=17.0.0",
"react-dom": ">=17.0.0"
},
"devDependencies": {
"@emotion/eslint-plugin": "^11.10.0",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"@typescript-eslint/typescript-estree": "^5.48.1",
"eslint": "^8.31.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.8.2",
"typescript": "^4.9.3"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5"
}
}