forked from Flipboard/react-canvas
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
94 lines (94 loc) · 2.84 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
86
87
88
89
90
91
92
93
94
{
"name": "react-canvas",
"version": "1.8.0-react17",
"description": "High performance <canvas> rendering for React components for React 17",
"main": "dist/index.js",
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/antoninkriz/react-canvas.git"
},
"scripts": {
"build": "rimraf dist && babel src --out-dir dist",
"storybook": "storybook dev -p 6006",
"prepare": "yarn build",
"prettier": "prettier {src,stories}/**/* --write",
"lint": "eslint 'src/**/*' 'stories/**/*'"
},
"keywords": [
"react",
"canvas"
],
"maintainers": [
{
"name": "Antonín Kříž",
"url": "https://www.antoninkriz.eu"
}
],
"contributors": [
"Antonín Kříž (https://www.antoninkriz.eu)",
"Abhishek Hingnikar <djdark88.7@gmail.com>",
"Jakub Kottnauer <jk@jakubkottnauer.com>",
"Tomáš Vojtášek <tomas.vojtasek@quantlane.com>",
"Vita Smid <hi@vitasmid.com>",
"Greg Fodor <gfodor@gmail.com>",
"Christopher Berger <contact@christopherberger.info>",
"Brent Vatne <brent.vatne@madriska.com>"
],
"author": "Michael Johnston <mj@flipboard.com>",
"license": "BSD-3-Clause",
"homepage": "https://github.com/antoninkriz/react-canvas",
"bugs": {
"url": "https://github.com/antoninkriz/react-canvas/issues"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@storybook/addon-actions": "^7.0.0-beta.28",
"@storybook/addon-essentials": "^7.0.0-beta.28",
"@storybook/addon-interactions": "^7.0.0-beta.28",
"@storybook/addon-links": "^7.0.0-beta.28",
"@storybook/react": "^7.0.0-beta.28",
"@storybook/react-webpack5": "^7.0.0-beta.28",
"@storybook/testing-library": "^0.0.14-next.1",
"@types/react-reconciler": "0.26.0",
"alea": "^1.0.1",
"babel-loader": "^9.1.2",
"d3-scale": "^4.0.2",
"d3-scale-chromatic": "^3.0.0",
"eslint": "^8.31.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.4",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.0",
"eslint-plugin-storybook": "^0.6.10",
"lodash.range": "^3.2.0",
"prettier": "^2.8.2",
"react": "==17.0.2",
"react-dom": "==17.0.2",
"rimraf": "^3.0.2",
"storybook": "^7.0.0-beta.28"
},
"peerDependencies": {
"react": "==17.0.2",
"react-dom": "==17.0.2"
},
"dependencies": {
"css-layout": "^1.1.1",
"css-line-break": "^2.1.0",
"invariant": "^2.2.4",
"multi-key-cache": "^1.0.2",
"prop-types": "^15.8.1",
"react-reconciler": "==0.26.0",
"scheduler": "==0.20.2"
}
}