forked from qntln/react-canvas
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 1.89 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
{
"name": "react-canvas",
"version": "1.7.0",
"description": "High performance <canvas> rendering for React components",
"main": "dist/index.js",
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/gfodor/react-canvas.git"
},
"scripts": {
"build": "rimraf dist && babel src --out-dir dist",
"storybook": "start-storybook -p 6006 -c .storybook",
"build-storybook": "build-storybook -c .storybook",
"prepare": "yarn build",
"prettier": "prettier {src,stories}/**/* --write",
"lint": "eslint 'src/**/*' 'stories/**/*'"
},
"keywords": [
"react",
"canvas"
],
"author": "Michael Johnston <mj@flipboard.com>",
"license": "BSD-3-Clause",
"homepage": "https://github.com/gfodor/react-canvas",
"bugs": {
"url": "https://github.com/gfodor/react-canvas/issues"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@storybook/react": "^5.0.11",
"alea": "^0.0.9",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"d3-scale": "^1.0.6",
"eslint": "5.3.0",
"eslint-config-airbnb": "17.1.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.11.0",
"lodash.range": "^3.2.0",
"prettier": "^1.17.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"rimraf": "^2.6.2"
},
"peerDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"dependencies": {
"css-layout": "^1.1.1",
"css-line-break": "^1.1.1",
"invariant": "^2.2.4",
"multi-key-cache": "^1.0.2",
"prop-types": "^15.6.1",
"react-reconciler": "^0.20.4",
"scheduler": "^0.14.0"
}
}