game-engine/package.json

55 lines
1.5 KiB
JSON
Raw Normal View History

2023-07-22 14:34:09 +02:00
{
"name": "renderer",
"version": "0.0.0",
"main": "dist/index.js",
"types": "dist/types.d.ts",
"source": "src/index.ts",
"license": "MIT",
"scripts": {
"dev": "parcel public/index.html --no-cache --open",
2023-07-23 18:36:47 +02:00
"build": "parcel build --reporter @parcel/reporter-bundle-analyzer",
"start": "parcel start",
2023-07-22 14:34:09 +02:00
"lint:typescript": "eslint \"**/*.ts\" --ignore-path \".gitignore\" && tsc --noemit",
"lint:prettier": "prettier \".\" --check --ignore-path \".gitignore\""
},
"dependencies": {
"@pixi/color": "7.2.4",
"@pixi/layers": "2.1.0",
"@pixi/utils": "^7.2.4",
"gsap": "^3.12.2",
"pixi.js": "^7.2.4"
},
"devDependencies": {
"@parcel/config-default": "^2.9.3",
2023-07-23 18:36:47 +02:00
"@parcel/packager-ts": "2.9.3",
"@parcel/reporter-bundle-analyzer": "^2.9.3",
2023-07-22 14:34:09 +02:00
"@parcel/transformer-typescript-tsc": "^2.9.3",
2023-07-23 18:36:47 +02:00
"@parcel/transformer-typescript-types": "2.9.3",
2023-07-22 14:34:09 +02:00
"@types/node": "^20.4.3",
"@walidoux/eslint-config": "1.0.3",
"@walidoux/prettier-config": "1.0.3",
2023-07-23 18:36:47 +02:00
"eslint": "8.45.0",
2023-07-22 14:34:09 +02:00
"parcel": "^2.9.3",
2023-07-23 18:36:47 +02:00
"prettier": "2.8.8",
2023-07-22 14:34:09 +02:00
"process": "^0.11.10",
"punycode": "1.4.1",
"querystring-es3": "^0.2.1",
"timers-browserify": "^2.0.12",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.1.6"
},
"peerDependencies": {
"url": "0.11.1"
},
"prettier": "@walidoux/prettier-config",
"eslintConfig": {
"extends": [
"@walidoux/eslint-config"
2023-07-23 18:36:47 +02:00
],
"rules": {
"arrow-body-style": "off"
}
2023-07-22 14:34:09 +02:00
}
}