-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
53 lines (53 loc) · 1.39 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
{
"name": "horizoverlay",
"description": "A simple horizontal damage meter overlay for Final Fantasy XIV with ACT",
"version": "2.2.4",
"author": "Rafael 'BSIDES' Pereira (https://twitter.com/bsides)",
"contributors": [
"Please check this url for the whole list(https://github.com/bsides/horizoverlay/graphs/contributors)"
],
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/bsides/horizoverlay.git"
},
"bugs": {
"url": "https://github.com/bsides/horizoverlay/issues"
},
"homepage": "https://bsides.github.io/horizoverlay",
"dependencies": {
"raven-js": "^3.24.0",
"react": "^16.3.0",
"react-dom": "^16.3.0",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-scripts": "^5.0.1"
},
"devDependencies": {
"gh-pages": "^4.0.0",
"serve": "^14.0.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"now-start": "serve -s build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"now": "npm-run-all -s build now-deploy",
"now-deploy": "now build --public",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
">0.2%",
"not dead",
"not op_mini all"
]
}
}