mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 22:58:29 +08:00
Removed all React-related dependencies and config.
This commit is contained in:
parent
8411d75b7f
commit
4c09486f65
@ -1,13 +1,12 @@
|
||||
{
|
||||
"extends": [
|
||||
"eslint:recommended",
|
||||
"plugin:react/recommended",
|
||||
"plugin:@typescript-eslint/recommended",
|
||||
"prettier",
|
||||
"prettier/@typescript-eslint",
|
||||
"plugin:prettier/recommended"
|
||||
],
|
||||
"plugins": ["react", "@typescript-eslint", "prettier"],
|
||||
"plugins": ["@typescript-eslint", "prettier"],
|
||||
"env": {
|
||||
"browser": true,
|
||||
"es6": true,
|
||||
@ -34,14 +33,7 @@
|
||||
"no-constant-condition": ["warn", { "checkLoops": false }],
|
||||
"no-empty": "warn",
|
||||
"no-useless-escape": "warn",
|
||||
"prettier/prettier": "warn",
|
||||
"react/no-unescaped-entities": "off"
|
||||
},
|
||||
"settings": {
|
||||
"react": {
|
||||
"pragma": "React",
|
||||
"version": "detect"
|
||||
}
|
||||
"prettier/prettier": "warn"
|
||||
},
|
||||
"parser": "@typescript-eslint/parser"
|
||||
}
|
||||
|
@ -1,73 +0,0 @@
|
||||
module.exports = {
|
||||
// Some colors are set to ridiculous values so they stand out once
|
||||
// they're first used. They can then be changed to something more
|
||||
// sensible.
|
||||
"@background-color-base": "hsl(0, 0%, 20%)",
|
||||
"@background-color-light": "lighten(@background-color-base, 20%)",
|
||||
"@body-background": "@background-color-base",
|
||||
"@component-background": "@background-color-base",
|
||||
|
||||
"@text-color": "hsl(0, 0%, 90%)",
|
||||
"@text-color-secondary": "hsl(0, 0%, 35%)",
|
||||
"@text-color-dark": "hsl(0, 0%, 15%)",
|
||||
"@text-color-dark-secondary": "hsl(0, 0%, 35%)",
|
||||
"@heading-color": "hsl(0, 0%, 85%)",
|
||||
|
||||
"@item-hover-bg": "hsl(200, 30%, 30%)",
|
||||
"@item-active-bg": "hsl(200, 50%, 30%)",
|
||||
|
||||
"@primary-color": "hsl(200, 60%, 75%)",
|
||||
// Color used to control the text color in many active and hover states.
|
||||
"@primary-5": "hsl(200, 10%, 60%)",
|
||||
// Color used to control the text color of active buttons.
|
||||
"@primary-6": "hsl(200, 30%, 60%)",
|
||||
"@disabled-color": "hsl(0, 0%, 50%)",
|
||||
"@tag-default-bg": "yellow",
|
||||
"@popover-bg": "yellow",
|
||||
"@highlight-color": "blue",
|
||||
"@info-color": "orange",
|
||||
"@warning-color": "salmon",
|
||||
"@alert-message-color": "red",
|
||||
|
||||
"@padding-lg": "12px",
|
||||
"@padding-md": "8px",
|
||||
"@padding-sm": "6px",
|
||||
"@padding-xs": "4px",
|
||||
|
||||
"@layout-body-background": "cyan",
|
||||
"@layout-sider-background": "lime",
|
||||
"@layout-header-background": "lime",
|
||||
"@layout-trigger-color": "magenta",
|
||||
"@layout-trigger-background": "purple",
|
||||
|
||||
"@menu-dark-bg": "@component-background",
|
||||
"@menu-dark-submenu-bg": "@component-background",
|
||||
|
||||
"@input-bg": "darken(@background-color-base, 5%)",
|
||||
"@input-height-base": "28px",
|
||||
"@input-height-lg": "34px",
|
||||
"@input-height-sm": "24px",
|
||||
|
||||
"@btn-height-base": "28px",
|
||||
"@btn-height-lg": "34px",
|
||||
"@btn-height-sm": "24px",
|
||||
"@btn-default-bg": "lighten(@background-color-base, 10%)",
|
||||
|
||||
"@border-color-base": "lighten(@background-color-base, 20%)",
|
||||
"@border-color-split": "lighten(@background-color-base, 10%)",
|
||||
"@border-radius-base": "0",
|
||||
"@border-radius-sm": "0",
|
||||
|
||||
"@table-selected-row-bg": "@item-active-bg",
|
||||
"@table-row-hover-bg": "@item-hover-bg",
|
||||
"@collapse-header-bg": "yellow",
|
||||
|
||||
"@tabs-card-head-background": "darken(@background-color-base, 5%)",
|
||||
"@tabs-card-height": "28px",
|
||||
"@tabs-card-active-color": "white",
|
||||
"@tabs-highlight-color": "white",
|
||||
"@tabs-hover-color": "white",
|
||||
"@tabs-active-color": "white",
|
||||
"@tabs-card-active-color": "white",
|
||||
"@tabs-ink-bar-color": "white",
|
||||
};
|
19
package.json
19
package.json
@ -6,25 +6,13 @@
|
||||
"dependencies": {
|
||||
"@types/lodash": "^4.14.132",
|
||||
"@types/luxon": "^1.15.2",
|
||||
"@types/react": "16.8.20",
|
||||
"@types/react-dom": "16.8.4",
|
||||
"@types/react-virtualized": "^9.21.2",
|
||||
"@types/react-virtualized-select": "^3.0.7",
|
||||
"antd": "^3.20.1",
|
||||
"camera-controls": "^1.12.2",
|
||||
"golden-layout": "^1.5.9",
|
||||
"javascript-lp-solver": "^0.4.5",
|
||||
"js-logger": "^1.6.0",
|
||||
"lodash": "^4.17.14",
|
||||
"luxon": "^1.17.2",
|
||||
"mobx": "^5.11.0",
|
||||
"mobx-react": "^6.1.1",
|
||||
"moment": "^2.24.0",
|
||||
"monaco-editor": "^0.17.1",
|
||||
"react": "^16.8.6",
|
||||
"react-dom": "^16.8.6",
|
||||
"react-virtualized": "^9.21.1",
|
||||
"react-virtualized-select": "^3.1.3",
|
||||
"three": "^0.106.2"
|
||||
},
|
||||
"scripts": {
|
||||
@ -35,9 +23,6 @@
|
||||
"update_ephinea_data": "ts-node --project=tsconfig-scripts.json assets_generation/update_ephinea_data.ts",
|
||||
"lint": "prettier --check \"{src,assets_generation,test}/**/*.{ts,tsx}\" && echo Linting... && eslint \"{src,assets_generation,test}/**/*.{ts,tsx}\" && echo All code passes the prettier and eslint checks."
|
||||
},
|
||||
"eslintConfig": {
|
||||
"extends": "react-app"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@fortawesome/fontawesome-free": "^5.10.2",
|
||||
"@types/cheerio": "^0.22.11",
|
||||
@ -52,15 +37,11 @@
|
||||
"dotenv-webpack": "^1.7.0",
|
||||
"eslint": "^5.16.0",
|
||||
"eslint-config-prettier": "^6.0.0",
|
||||
"eslint-config-react": "^1.1.7",
|
||||
"eslint-plugin-prettier": "^3.1.0",
|
||||
"eslint-plugin-react": "^7.14.3",
|
||||
"file-loader": "^4.1.0",
|
||||
"fork-ts-checker-webpack-plugin": "^1.4.3",
|
||||
"html-webpack-plugin": "^3.2.0",
|
||||
"jest": "^24.8.0",
|
||||
"less": "^3.9.0",
|
||||
"less-loader": "^5.0.0",
|
||||
"mini-css-extract-plugin": "^0.8.0",
|
||||
"monaco-editor-webpack-plugin": "^1.7.0",
|
||||
"optimize-css-assets-webpack-plugin": "^5.0.3",
|
||||
|
@ -36,7 +36,7 @@ export class NavigationView extends Widget {
|
||||
label: "Server:",
|
||||
enabled: false,
|
||||
selected: "Ephinea",
|
||||
tooltip: "Only Ephinea is supported at the moment"
|
||||
tooltip: "Only Ephinea is supported at the moment",
|
||||
}),
|
||||
);
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { Episode, check_episode } from "./Episode";
|
||||
import { check_episode, Episode } from "./Episode";
|
||||
|
||||
// Make sure ObjectType does not overlap NpcType.
|
||||
export enum NpcType {
|
||||
@ -492,14 +492,7 @@ define_npc_type_data(
|
||||
true,
|
||||
);
|
||||
define_npc_type_data(NpcType.Dimenian2, "Dimenian (Ep. II)", "Dimenian", "Arlan", 2, true);
|
||||
define_npc_type_data(
|
||||
NpcType.LaDimenian2,
|
||||
"La Dimenian (Ep. II)",
|
||||
"La Dimenian",
|
||||
"Merlan",
|
||||
2,
|
||||
true,
|
||||
);
|
||||
define_npc_type_data(NpcType.LaDimenian2, "La Dimenian (Ep. II)", "La Dimenian", "Merlan", 2, true);
|
||||
define_npc_type_data(NpcType.SoDimenian2, "So Dimenian (Ep. II)", "So Dimenian", "Del-D", 2, true);
|
||||
define_npc_type_data(
|
||||
NpcType.DarkBelra2,
|
||||
@ -513,14 +506,7 @@ define_npc_type_data(NpcType.BarbaRay, "Barba Ray", "Barba Ray", "Barba Ray", 2,
|
||||
|
||||
// Episode II VR Spaceship
|
||||
|
||||
define_npc_type_data(
|
||||
NpcType.SavageWolf2,
|
||||
"Savage Wolf (Ep. II)",
|
||||
"Savage Wolf",
|
||||
"Gulgus",
|
||||
2,
|
||||
true,
|
||||
);
|
||||
define_npc_type_data(NpcType.SavageWolf2, "Savage Wolf (Ep. II)", "Savage Wolf", "Gulgus", 2, true);
|
||||
define_npc_type_data(
|
||||
NpcType.BarbarousWolf2,
|
||||
"Barbarous Wolf (Ep. II)",
|
||||
|
@ -18,10 +18,7 @@ class HuntMethodPersister extends Persister {
|
||||
this.persist_for_server(server, METHOD_USER_TIMES_KEY, user_times);
|
||||
}
|
||||
|
||||
async load_method_user_times(
|
||||
hunt_methods: HuntMethodModel[],
|
||||
server: Server,
|
||||
): Promise<void> {
|
||||
async load_method_user_times(hunt_methods: HuntMethodModel[], server: Server): Promise<void> {
|
||||
const user_times = await this.load_for_server<PersistedUserTimes>(
|
||||
server,
|
||||
METHOD_USER_TIMES_KEY,
|
||||
|
@ -34,11 +34,7 @@ class AreaStore {
|
||||
return area;
|
||||
};
|
||||
|
||||
get_variant = (
|
||||
episode: Episode,
|
||||
area_id: number,
|
||||
variant_id: number,
|
||||
): AreaVariantModel => {
|
||||
get_variant = (episode: Episode, area_id: number, variant_id: number): AreaVariantModel => {
|
||||
const area = this.get_area(episode, area_id);
|
||||
|
||||
const area_variant = area.area_variants[variant_id];
|
||||
|
@ -12,8 +12,7 @@
|
||||
"strict": true,
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"moduleResolution": "node",
|
||||
"jsx": "react",
|
||||
"experimentalDecorators": true,
|
||||
"experimentalDecorators": true
|
||||
},
|
||||
"include": ["src", "typedefs"]
|
||||
}
|
||||
|
@ -19,8 +19,6 @@ module.exports = {
|
||||
languages: [],
|
||||
}),
|
||||
new ProvidePlugin({
|
||||
React: "react",
|
||||
ReactDOM: "react-dom",
|
||||
$: "jquery",
|
||||
jQuery: "jquery",
|
||||
}),
|
||||
|
Loading…
Reference in New Issue
Block a user