-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.97 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
{
"name": "image-color-picker",
"version": "0.1.0",
"description": "A simple web tool to pick a color from an image",
"main": "dist/index.js",
"scripts": {
"lint": "eslint .",
"start": "webpack serve --env development",
"build": "webpack --env clean",
"deploy": "npm run build --env ghpages && node deploy-gh-pages.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/btmnk/image-color-picker.git"
},
"keywords": [
"color-picker",
"color",
"image-color",
"image-color-picker"
],
"author": "Rico 'bitmonk' <contact@bitmonk.de>",
"license": "MIT",
"bugs": {
"url": "https://github.com/btmnk/image-color-picker/issues"
},
"homepage": "https://github.com/btmnk/image-color-picker#readme",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "1.2.36",
"@fortawesome/free-solid-svg-icons": "5.15.4",
"@fortawesome/react-fontawesome": "0.1.15",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.1",
"@types/react": "^17.0.26",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"babel-loader": "^8.2.2",
"classnames": "^2.3.1",
"css-loader": "^6.3.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-react": "^7.26.1",
"fork-ts-checker-webpack-plugin": "^6.3.3",
"gh-pages": "^3.2.3",
"html-webpack-plugin": "^5.3.2",
"mini-css-extract-plugin": "^2.3.0",
"postcss": "^8.3.8",
"postcss-loader": "^6.1.1",
"postcss-preset-env": "^6.7.0",
"react-refresh": "^0.10.0",
"typescript": "^4.4.3",
"webpack": "^5.56.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.3.0"
}
}