forked from tbolis/react-sketch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3 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
95
96
97
98
99
100
101
{
"name": "react-sketch",
"version": "0.4.4",
"description": "Sketch Element for React based applications, backed-up by fabricjs as its core",
"keywords": [
"react",
"canvas",
"sketch",
"fabricjs",
"fabric.js"
],
"author": {
"name": "Thomas Bolis",
"email": "thomas.bolis@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/tbolis/react-sketch.git"
},
"bugs": {
"url": "https://github.com/tbolis/react-sketch/issues"
},
"license": "MIT",
"main": "./lib",
"scripts": {
"clean": "rimraf lib && rimraf build",
"prebuild": "rimraf lib",
"build": "NODE_ENV=production webpack --config webpack.library.cfg.js --display-modules",
"build:light": "babel ./src --out-dir ./lib",
"build:examples": "NODE_ENV=production webpack --config webpack.examples.cfg.js",
"prepublish": "npm run test && npm run build",
"lint": "eslint ./src",
"lint:fix": "eslint --fix ./src",
"start": "node webpack.server.js",
"start:debug": "weinre --boundHost `my-local-ip` ",
"test": "karma start karma.config.js",
"posttest": "npm run lint"
},
"engines": {
"node": ">= 6"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.2",
"babel-plugin-react-transform": "^3.0.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-react-display-name": "^6.25.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^6.26.0",
"chai": "^4.1.2",
"css-loader": "^0.28.9",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.16.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-react": "^7.6.1",
"fabric": "1.7.22",
"flexboxgrid": "^6.3.1",
"html-webpack-plugin": "^2.30.1",
"karma": "^2.0.0",
"karma-babel-preprocessor": "^7.0.0",
"karma-chai": "^0.1.0",
"karma-coverage": "^1.1.1",
"karma-es6-shim": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-phantomjs-launcher": "^1.0.4",
"karma-phantomjs-shim": "^1.5.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.9",
"material-ui": "^0.20.0",
"mocha": "^5.0.0",
"my-local-ip": "^1.0.0",
"open": "0.0.5",
"open-browser-webpack-plugin": "0.0.5",
"postcss-loader": "^2.1.0",
"react-color": "^2.13.8",
"react-hot-loader": "^3.1",
"react-tap-event-plugin": "^3.0.2",
"react-test-renderer": "^16.2.0",
"react-transform-hmr": "^1.0.4",
"rimraf": "^2.6.2",
"style-loader": "^0.20.1",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.11.1",
"weinre": "^2.0.0-pre-I0Z7U9OV"
},
"dependencies": {
"phantomjs-prebuilt": "2.1.7",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-dropzone": "4.2.7"
}
}