-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.61 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.61 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
{
"name": "react-drawing",
"version": "1.2.1",
"description": "React component for drawing on canvas with possibility to pan and zoom.",
"main": "dist/main.js",
"keywords": [
"react",
"drawing",
"canvas",
"brush"
],
"types": "types/index.d.ts",
"scripts": {
"build": "webpack --mode=production",
"lint": "eslint src --fix --ext .ts,.tsx",
"storybook": "start-storybook",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sasza2/react-drawing.git"
},
"author": "sasza",
"license": "MIT",
"bugs": {
"url": "https://github.com/sasza2/react-drawing/issues"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-object-rest-spread": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.18.6",
"@storybook/react": "^5.3.18",
"@types/jest": "^26.0.15",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"jest": "^26.4.4",
"react": "16.14.0",
"ts-jest": "^26.4.4",
"ts-loader": "~8.0.11",
"typescript": "~4.1.2",
"webpack-cli": "^3.3.11"
},
"peerDependencies": {
"react": ">=16.14.0"
},
"dependencies": {
"@sasza/react-panzoom": "^1.7.1"
}
}