silphius/package.json

59 lines
1.7 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-10 19:35:19 -05:00
"dev": "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-10 22:42:30 -05:00
"start": "cross-env NODE_ENV=production node ./server.js",
"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",
"@pixi/react": "^7.1.2",
2024-06-11 15:06:43 -05:00
"@pixi/spritesheet": "^7.4.2",
"@pixi/tilemap": "^4.1.0",
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-10 19:35:19 -05:00
"compression": "^1.7.4",
"express": "^4.18.2",
2024-06-10 14:47:05 -05:00
"isbot": "^4.1.0",
2024-06-10 19:35:19 -05:00
"morgan": "^1.10.0",
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",
"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-06-11 15:06:43 -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
}