forked from Flipboard/react-canvas
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
62 lines (62 loc) · 1.83 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
{
"name": "@gfodor/react-canvas",
"version": "1.5.0",
"description": "High performance <canvas> rendering for React components",
"main": "dist/bundle.js",
"repository": {
"type": "git",
"url": "https://github.com/gfodor/react-canvas.git"
},
"scripts": {
"build": "./node_modules/.bin/webpack .",
"storybook": "start-storybook -p 6006 -c .storybook",
"build-storybook": "build-storybook -c .storybook"
},
"keywords": [
"react",
"canvas"
],
"author": "Michael Johnston <[email protected]>",
"license": "BSD-3-Clause",
"homepage": "https://github.com/gfodor/react-canvas",
"bugs": {
"url": "https://github.com/gfodor/react-canvas/issues"
},
"devDependencies": {
"@storybook/react": "^3.4.5",
"alea": "^0.0.9",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-register": "^6.26.0",
"babel-runtime": "^6.26.0",
"d3-scale": "^1.0.6",
"del": "^3.0.0",
"eslint": "^4.1.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.8.2",
"jest": "^22.4.3",
"lodash.range": "^3.2.0",
"prettier": "^1.12.1",
"webpack": "^4.0.0",
"webpack-cli": "^2.1.3"
},
"dependencies": {
"@craigmorton/linebreak": "^0.4.5",
"create-react-class": "^15.6.0",
"css-layout": "^1.1.1",
"fbjs": "^0.8.16",
"multi-key-cache": "^1.0.2",
"object-assign": "^4.0.1",
"prop-types": "^15.6.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-reconciler": "^0.10.0",
"scroller": "git://github.com/mjohnston/scroller"
}
}