-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
46 lines (46 loc) · 1.1 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
{
"name": "visual-center",
"description": "Find the visual center of your images.",
"version": "1.3.0",
"private": false,
"homepage": "https://javier.xyz/visual-center",
"repository": {
"type": "git",
"url": "https://github.com/javierbyte/visual-center/"
},
"author": "Javier Bórquez <hi@javier.xyz> (http://github.com/javierbyte)",
"license": "BSD-3-Clause",
"dependencies": {
"base64-image-utils": "^1.2.0",
"jbx": "^2.10.0",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "^5.0.1"
},
"scripts": {
"dev": "react-scripts start",
"start": "react-scripts start",
"build": "react-scripts build",
"eject": "react-scripts eject",
"deploy": "npm run build && gh-pages -d build"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"gh-pages": "^6.1.1"
}
}