-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathpackage.json
63 lines (63 loc) · 1.86 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
{
"name": "react-fabricjs",
"version": "0.1.2",
"description": "fabricjs implemented by react",
"main": "lib/main.js",
"keywords": [
"canvas",
"graphic",
"react",
"photo-editing"
],
"license": "BSD",
"scripts": {
"clean": "rimraf lib",
"build:uncompressed": "cross-env NODE_ENV=production webpack --config webpack.config.build.js",
"build:minified": "cross-env NODE_ENV=production webpack --config webpack.config.build.js --minimize",
"build": "npm run clean && npm run build:uncompressed && npm run build:minified ",
"start": "node devServer.js"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0",
"react-dom": "^0.14.0 || ^15.0.0"
},
"dependencies": {
"deep-diff": "~0.3.3",
"fabric-webpack": "~1.6.0-rc.1",
"object-assign": "~4.0.1"
},
"devDependencies": {
"autoprefixer": "~6.3.1",
"babel-core": "~6.4.5",
"babel-eslint": "~5.0.0-beta6",
"babel-loader": "~6.2.1",
"babel-plugin-add-module-exports": "~0.1.2",
"babel-plugin-transform-object-rest-spread": "~6.3.13",
"babel-polyfill": "~6.3.14",
"babel-preset-es2015": "~6.3.13",
"babel-preset-react": "~6.3.13",
"babel-preset-react-hmre": "~1.0.1",
"babel-preset-stage-0": "~6.3.13",
"classnames": "~2.1.2",
"cross-env": "~1.0.7",
"css-loader": "~0.23.1",
"eslint": "~1.10.3",
"eslint-plugin-babel": "~3.0.0",
"eslint-plugin-react": "~3.16.1",
"eventsource-polyfill": "~0.9.6",
"express": "~4.13.4",
"file-loader": "~0.8.5",
"node-sass": "~3.4.2",
"postcss-loader": "~0.8.0",
"rimraf": "~2.5.1",
"react": "~0.14",
"react-dom": "~0.14.0",
"sass-loader": "~3.1.2",
"style-loader": "~0.13.0",
"url-loader": "~0.5.7",
"webpack": "~1.12.12",
"webpack-dev-middleware": "~1.5.1",
"webpack-hot-middleware": "~2.6.2"
},
"author": "Fandora"
}