-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
85 lines (85 loc) · 2.62 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
{
"name": "draft-js-emoji-mart-plugin",
"version": "1.0.1",
"description": "Emoji-mart plugin for DraftJS.",
"browserslist": "> 0.25%, not dead",
"main": "lib",
"types": "lib/index.d.ts",
"keywords": [
"emoji",
"picker",
"emoji-mart",
"editor",
"wysiwyg",
"draft",
"react",
"ux",
"components",
"react-component"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"type-check": "tsc --noEmit",
"watch": "tsc --watch",
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --ignore '**/*.d.ts' --source-maps",
"lint": "eslint ./src ./stories",
"storybook": "start-storybook -p 6006 --no-dll",
"build-storybook": "build-storybook --no-dll"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/zamarawka/draft-js-emoji-mart-plugin.git"
},
"author": "zamarawka <somebody.told@mail.ru> (https://github.com/zamarawka)",
"license": "MIT",
"bugs": {
"url": "https://github.com/zamarawka/draft-js-emoji-mart-plugin/issues"
},
"homepage": "https://github.com/zamarawka/draft-js-emoji-mart-plugin#readme",
"dependencies": {
"emoji-regex": "^7.0.3",
"find-with-regex": "^1.1.3"
},
"peerDependencies": {
"emoji-mart": ">= 2.9",
"draft-js": "^0.11.0",
"draft-js-plugins-editor": "^3.0.0",
"react": ">= 16.3"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-react-jsx": "^7.12.5",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@storybook/addon-actions": "^6.0.28",
"@storybook/addon-essentials": "^6.0.28",
"@storybook/addon-links": "^6.0.28",
"@storybook/react": "^6.0.28",
"@types/draft-js": "^0.10.44",
"@types/emoji-mart": "^3.0.4",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-runtime": "^6.26.0",
"core-js": "^3.7.0",
"draft-js": "^0.11.0",
"draft-js-plugins-editor": "^3.0.0",
"emoji-mart": "^2.9.2",
"eslint": "^7.13.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"react-is": "^16.8.3",
"typescript": "^4.0.5"
}
}