Files
littlelink-server/package.json
T
Techno Tim f6458d27c3 chore(deps): combine dependabot updates (next, eslint-config-next, setup-buildx-action) (#873)
- bump next from 16.3.0 to 16.3.1
- bump eslint-config-next from 16.3.0 to 16.3.1
- bump docker/setup-buildx-action from v4.2.0 to v4.3.0
2026-08-23 15:19:27 -05:00

62 lines
2.2 KiB
JSON

{
"name": "littlelink-server",
"version": "1.0.0",
"description": "A server based on littlelink",
"main": "app.js",
"license": "MIT",
"private": true,
"scripts": {
"dev": "tsx server.ts",
"build": "next build && tsc -p tsconfig.server.json",
"debug": "yarn start --inspect --inspect-port 9230",
"start": "NODE_ENV=production node dist-server/server.js",
"compose-env:sync": "node scripts/sync-compose-env.mjs",
"compose-env:check": "node scripts/sync-compose-env.mjs --check",
"typegen": "next typegen",
"typecheck": "yarn typegen && tsc --noEmit",
"test:e2e": "yarn playwright test",
"test:e2e:minimal": "bash e2e/minimal-env.sh",
"test": "node --experimental-vm-modules ./node_modules/.bin/jest --passWithNoTests --env=jsdom",
"lint": "eslint .",
"lint:style": "stylelint ./src/**/*.css ./public/**/*.css",
"lint:markdown": "markdownlint .github/*.md && markdownlint README.md CONTRIBUTING.md",
"ci": "yarn lint && yarn lint:style && yarn lint:markdown && yarn compose-env:check && yarn typecheck && yarn test"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-brands-svg-icons": "^6.7.2",
"@fortawesome/free-regular-svg-icons": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.6",
"compression": "^1.8.1",
"express": "^4.21.2",
"morgan": "^1.10.1",
"next": "16.3.1",
"react": "19.2.8",
"react-dom": "19.2.8"
},
"devDependencies": {
"@playwright/test": "^1.62.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/compression": "^1.8.1",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/morgan": "^1.9.10",
"@types/node": "^26.2.0",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"eslint": "^9.39.5",
"eslint-config-next": "16.3.1",
"eslint-plugin-prettier": "^5.5.6",
"jest": "^30.0.0",
"jest-environment-jsdom": "^30.0.0",
"markdownlint-cli": "^0.49.1",
"prettier": "^3.9.6",
"stylelint": "^16.25.0",
"tsx": "^4.23.12",
"typescript": "^6.0.3"
}
}