silphius/package.json

76 lines
2.3 KiB
JSON
Raw Normal View History

2024-06-10 14:47:05 -05:00
{
"name": "silphius-next",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix vite:build",
2024-06-27 07:37:01 -05:00
"dev": "NODE_OPTIONS=--use-openssl-ca node ./server.js",
2024-06-10 14:47:05 -05:00
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
2024-06-29 06:28:27 -05:00
"start": "cross-env NODE_ENV=production npm run dev",
2024-06-10 22:42:30 -05:00
"storybook": "storybook dev -p 6006",
2024-06-14 15:18:55 -05:00
"storybook:build": "storybook build",
"test": "vitest app"
2024-06-10 14:47:05 -05:00
},
"dependencies": {
2024-06-10 22:42:30 -05:00
"@msgpack/msgpack": "^3.0.0-beta2",
2024-07-01 18:12:53 -05:00
"@pixi/filter-adjustment": "^5.1.1",
2024-07-04 15:17:33 -05:00
"@pixi/filter-color-matrix": "^7.4.2",
2024-07-01 18:12:53 -05:00
"@pixi/filter-glow": "^5.2.1",
2024-07-15 04:36:10 -05:00
"@pixi/layers": "^2.1.0",
2024-06-26 04:18:46 -05:00
"@pixi/particle-emitter": "^5.0.8",
2024-06-10 22:42:30 -05:00
"@pixi/react": "^7.1.2",
2024-06-11 15:06:43 -05:00
"@pixi/spritesheet": "^7.4.2",
"@pixi/tilemap": "^4.1.0",
2024-07-08 17:31:07 -05:00
"@react-hook/resize-observer": "^2.0.1",
2024-06-10 19:35:19 -05:00
"@remix-run/express": "^2.9.2",
2024-06-10 14:47:05 -05:00
"@remix-run/node": "^2.9.2",
"@remix-run/react": "^2.9.2",
2024-06-22 10:47:17 -05:00
"acorn": "^8.12.0",
2024-07-10 14:17:53 -05:00
"alea": "^1.0.1",
2024-06-10 19:35:19 -05:00
"compression": "^1.7.4",
"express": "^4.18.2",
2024-06-15 20:59:11 -05:00
"idb-keyval": "^6.2.1",
2024-06-10 14:47:05 -05:00
"isbot": "^4.1.0",
"lru-cache": "^10.2.2",
2024-06-10 19:35:19 -05:00
"morgan": "^1.10.0",
2024-06-18 04:36:44 -05:00
"pixi.js": "^7.4.2",
2024-06-10 14:47:05 -05:00
"react": "^18.2.0",
2024-06-10 22:42:30 -05:00
"react-dom": "^18.2.0",
2024-07-08 15:49:23 -05:00
"react-tabs": "^6.0.2",
2024-07-13 03:02:55 -05:00
"remark-mdx": "^3.0.1",
"remark-parse": "^11.0.0",
2024-07-10 14:17:53 -05:00
"simplex-noise": "^4.0.1",
2024-07-13 03:02:55 -05:00
"unified": "^11.0.5",
"unist-util-visit-parents": "^6.0.1",
2024-06-10 22:42:30 -05:00
"ws": "^8.17.0"
2024-06-10 14:47:05 -05:00
},
"devDependencies": {
2024-06-10 22:42:30 -05:00
"@chromatic-com/storybook": "^1.5.0",
2024-06-10 14:47:05 -05:00
"@remix-run/dev": "^2.9.2",
2024-06-10 22:42:30 -05:00
"@storybook/addon-essentials": "^8.1.6",
"@storybook/addon-interactions": "^8.1.6",
"@storybook/addon-links": "^8.1.6",
"@storybook/addon-onboarding": "^8.1.6",
"@storybook/blocks": "^8.1.6",
"@storybook/react": "^8.1.6",
"@storybook/react-vite": "^8.1.6",
"@storybook/test": "^8.1.6",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/coverage-v8": "^1.6.0",
2024-06-10 19:35:19 -05:00
"cross-env": "^7.0.3",
2024-06-10 14:47:05 -05:00
"eslint": "^8.38.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
2024-07-09 18:44:50 -05:00
"image-size": "^1.1.1",
2024-06-10 22:42:30 -05:00
"storybook": "^8.1.6",
"vite": "^5.1.0",
"vitest": "^1.6.0"
2024-06-10 14:47:05 -05:00
},
"engines": {
"node": ">=20.0.0"
}
2024-06-10 19:35:19 -05:00
}