forked from nitin42/react-imgpro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.79 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
{
"name": "react-imgpro",
"version": "1.3.7",
"description": "Image processing component for React",
"main": "index.js",
"files": [
"build",
"index.js"
],
"keywords": [
"react",
"image processing",
"image",
"jimp",
"sepia",
"colors",
"invert",
"image component"
],
"repository": {
"type": "git",
"url": "https://github.com/nitin42/react-imgpro"
},
"author": "Nitin Tulswani",
"license": "MIT",
"dependencies": {
"browser-image-size": "^1.1.0",
"lint-staged": "^7.0.2",
"react-progressive-image": "^0.1.2",
"webworkify-webpack": "^2.0.5",
"window-or-global": "^1.0.1"
},
"peerDependencies": {
"react": "^16.0.0"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-jest": "^21.0.2",
"babel-loader": "^7.1.2",
"babel-preset-react-app": "^3.0.2",
"babili-webpack-plugin": "^0.1.2",
"husky": "^0.14.3",
"jest": "^21.2.0",
"jimp": "^0.2.28",
"prettier": "^1.11.1",
"prop-types": "^15.5.10",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0",
"uglifyjs-webpack-plugin": "^0.4.6",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.7.1",
"worker-loader": "^0.8.1"
},
"scripts": {
"start": "NODE_ENV=production ./node_modules/.bin/webpack-dev-server --content-base ./public --config ./webpack/webpack.config.dev.js",
"prebuild": "rm -rf ./build",
"build": "NODE_ENV=production ./node_modules/.bin/webpack --config ./webpack/webpack.config.js --progress",
"test": "jest",
"test:watch": "jest --watch",
"format": "prettier --write --single-quote \"src/**/*.js\"",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier --write --single-quote \"src/**/*.js\"",
"git add"
]
}
}