-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.07 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
{
"name": "magic-erase-console",
"version": "0.0.2",
"description": "A simple web console application for the magic-erase package",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf dist && mkdir dist",
"check-style": "standard app/**/*.js",
"build": "npm run check-style && babel --copy-files app -d dist",
"build-with-watch": "npm run check-style && babel --watch --copy-files app -d dist",
"clean-build": "npm run clean && npm run build",
"console": "webpack-dev-server --content-base ./img",
"watchers": "npm run build-with-watch & npm run console",
"start": "npm run clean-build && npm run watchers",
"prepack": "npm run clean-build"
},
"bin": "./bin/magicEraseConsole.js",
"repository": {
"type": "git",
"url": "https://github.com/rosesonfire/magic-erase-console.git"
},
"bugs": {
"url": "https://github.com/rosesonfire/magic-erase-console/issues"
},
"keywords": [
"magic-wand",
"object-detection",
"close-up-image",
"close-focussed-image",
"blurred-background",
"image-processing",
"computer-vision",
"image-detection",
"object-isolation",
"web-console",
"image-editting"
],
"author": "rosesonfire",
"license": "MIT",
"homepage": "https://github.com/rosesonfire/magic-erase-console",
"dependencies": {
"html-webpack-plugin": "^2.30.1",
"magic-erase": "0.0.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-promise-middleware": "^5.0.0",
"webpack": "^3.9.1",
"webpack-dev-server": "^2.9.5"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-loader": "^7.1.2",
"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-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"standard": "^10.0.3"
},
"standard": {
"parser": "babel-eslint"
}
}