mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 22:58:29 +08:00
77 lines
3.0 KiB
JSON
77 lines
3.0 KiB
JSON
{
|
|
"name": "phantasmal-world",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"camera-controls": "^1.22.1",
|
|
"core-js": "^3.6.5",
|
|
"golden-layout": "^1.5.9",
|
|
"javascript-lp-solver": "0.4.17",
|
|
"lodash": "^4.17.19",
|
|
"luxon": "^1.24.1",
|
|
"monaco-editor": "^0.20.0",
|
|
"three": "^0.118.3"
|
|
},
|
|
"optionalDependencies": {
|
|
"prs-rs": "file:src/core/data_formats/compression/prs/pkg"
|
|
},
|
|
"scripts": {
|
|
"start": "webpack-dev-server --config webpack.dev.js",
|
|
"check": "yarn lint && yarn check_formatting",
|
|
"lint": "echo 'Linting...' && eslint \"{src,assets_generation,test}/**/*.{ts,tsx}\" && echo 'No linting issues.'",
|
|
"check_formatting": "prettier --check \"{src,assets_generation,test}/**/*.{ts,tsx}\"",
|
|
"test": "jest",
|
|
"build": "yarn build_bundle",
|
|
"build_bundle": "webpack --config webpack.prod.js",
|
|
"build_prs_rs": "wasm-pack build src/core/data_formats/compression/prs",
|
|
"build_prs_rs_browser": "yarn build_prs_rs -t bundler && yarn upgrade prs-rs",
|
|
"build_prs_rs_testing": "yarn build_prs_rs -t nodejs -d 'test/pkg'",
|
|
"update_generic_data": "ts-node --project=tsconfig-scripts.json assets_generation/update_generic_data.ts",
|
|
"update_ephinea_data": "ts-node --project=tsconfig-scripts.json assets_generation/update_ephinea_data.ts",
|
|
"quest_stats": "ts-node --project=tsconfig-scripts.json assets_generation/quest_stats.ts"
|
|
},
|
|
"devDependencies": {
|
|
"@fortawesome/fontawesome-free": "^5.13.1",
|
|
"@types/cheerio": "^0.22.21",
|
|
"@types/jest": "^26.0.4",
|
|
"@types/lodash": "^4.14.157",
|
|
"@types/luxon": "^1.24.1",
|
|
"@types/node-fetch": "^2.5.7",
|
|
"@typescript-eslint/eslint-plugin": "^4.2.0",
|
|
"@typescript-eslint/parser": "^4.2.0",
|
|
"cheerio": "^1.0.0-rc.3",
|
|
"clean-webpack-plugin": "^3.0.0",
|
|
"copy-webpack-plugin": "^6.0.3",
|
|
"css-loader": "^3.6.0",
|
|
"dotenv": "^8.2.0",
|
|
"dotenv-webpack": "^2.0.0",
|
|
"eslint": "^7.9.0",
|
|
"eslint-config-prettier": "^6.12.0",
|
|
"eslint-plugin-prettier": "^3.1.4",
|
|
"file-loader": "^6.0.0",
|
|
"fork-ts-checker-webpack-plugin": "^5.2.0",
|
|
"html-webpack-plugin": "^4.3.0",
|
|
"jest": "^26.4.2",
|
|
"jest-canvas-mock": "^2.2.0",
|
|
"jquery": "^3.5.1",
|
|
"mini-css-extract-plugin": "^0.9.0",
|
|
"monaco-editor-webpack-plugin": "^1.9.0",
|
|
"node-fetch": "^2.6.0",
|
|
"optimize-css-assets-webpack-plugin": "^5.0.3",
|
|
"pnp-webpack-plugin": "^1.6.4",
|
|
"prettier": "^2.0.5",
|
|
"terser-webpack-plugin": "^2.3.7",
|
|
"ts-jest": "^26.4.0",
|
|
"ts-loader": "^8.0.4",
|
|
"ts-node": "^9.0.0",
|
|
"typescript": "^4.0.3",
|
|
"webpack": "^4.43.0",
|
|
"webpack-cli": "^3.3.12",
|
|
"webpack-dev-server": "^3.11.0",
|
|
"webpack-merge": "^5.0.9",
|
|
"worker-loader": "^2.0.0",
|
|
"yaml": "^1.10.0"
|
|
}
|
|
}
|