forked from GoldenChrysus/ffxiv-ember-overlay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.96 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
71
72
73
74
{
"name": "ffxiv-ember-overlay",
"description": "React + Redux overlay for the OverlayPlugin and ACTWebSocket plugins for Advanced Combat Tracker for use with Final Fantasy XIV.",
"license": "GPL-3.0-only",
"version": "0.13.0-alpha",
"keywords": [
"ffxiv-overlays",
"ffxiv-act",
"ffxiv",
"overlayplugin",
"overlayplugin-skin",
"actwebsocket"
],
"private": true,
"dependencies": {
"changelog-parser": "^2.8.0",
"chart.js": "^2.8.0",
"compare-versions": "^3.5.0",
"env-cmd": "^9.0.3",
"jquery": "^3.4.1",
"jquery-ui": "^1.12.1",
"localforage": "^1.7.3",
"lodash.clonedeep": "^4.5.0",
"lodash.mergewith": "^4.6.2",
"lodash.shuffle": "^4.2.0",
"react": "^16.8.6",
"react-chartjs-2": "^2.7.6",
"react-contextmenu": "^2.11.0",
"react-dom": "^16.8.6",
"react-redux": "^7.1.0",
"react-router-dom": "^5.0.1",
"react-scripts": "3.0.1",
"react-simple-code-editor": "^0.9.14",
"react-string-replace": "^0.4.4",
"react-tooltip": "^3.10.0",
"redux": "^4.0.4",
"redux-promise-middleware": "^6.1.1",
"semantic-ui-react": "^0.87.3"
},
"scripts": {
"copy:changelog": "cp CHANGELOG.md public/logs/",
"prestart": "npm run copy:changelog",
"start": "env-cmd -e default,development craco start",
"prebuild:development": "npm run copy:changelog",
"build:development": "env-cmd -e default,development craco build",
"prebuild:staging": "npm run copy:changelog",
"build:staging": "env-cmd -e default,staging craco build",
"prebuild": "npm run copy:changelog",
"build": "env-cmd -e default,production craco build",
"test": "craco test",
"eject": "craco eject"
},
"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"
]
},
"homepage": ".",
"devDependencies": {
"@craco/craco": "^5.2.4",
"craco-less": "^1.9.0",
"semantic-ui-less": "^2.4.1"
}
}