-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
79 lines (79 loc) · 2.17 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
{
"name": "react-context-menu-wrapper",
"version": "3.0.0",
"description": "Unopinionated context menu component for React",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"start": "styleguidist server",
"build:ts": "tsc",
"build:sg": "styleguidist build",
"build:all": "npm run build:ts; npm run build:sg",
"watch:ts": "tsc -w",
"test": "echo \"Error: no test specified\" && exit 1"
},
"license": "MIT",
"author": {
"name": "Tim Kuzhagaliyev",
"email": "tim.kuzh@gmail.com",
"url": "https://foxypanda.me/"
},
"homepage": "https://timbokz.github.io/react-context-menu-wrapper/",
"repository": {
"type": "git",
"url": "git+https://github.com/TimboKZ/react-context-menu-wrapper.git"
},
"bugs": {
"url": "https://github.com/TimboKZ/react-context-menu-wrapper/issues"
},
"keywords": [
"react",
"context-menu",
"context-menu-react",
"context-menu-component",
"event-handler",
"menu",
"react-component"
],
"dependencies": {
"@types/events": "^3.0.0",
"@types/shortid": "0.0.29",
"prop-types": "^15.7.2",
"shortid": "^2.2.15"
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.3",
"@typescript-eslint/eslint-plugin": "^2.5.0",
"@typescript-eslint/parser": "^2.5.0",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.6",
"babel-plugin-transform-class-properties": "^6.24.1",
"css-loader": "^3.2.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-loader": "^3.0.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.2.0",
"prettier": "^1.18.2",
"react": "^16.11.0",
"react-docgen-typescript": "^1.15.1",
"react-dom": "^16.11.0",
"style-loader": "^1.0.0",
"tsdef": "0.0.13",
"typescript": "^3.6.4"
}
}