This repository has been archived on 2024-06-24. You can view files and clone it, but cannot push or open issues or pull requests.
wgdash/package.json
Christoph Heiss 48589fa023
fix: Use custom node_netlink fork (for now) to fix linkstats
Signed-off-by: Christoph Heiss <contact@christoph-heiss.at>
2022-09-07 22:34:45 +02:00

59 lines
1.7 KiB
JSON

{
"author": "Christoph Heiss <contact@christoph-heiss.at>",
"name": "wgdash",
"version": "0.1.0",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:christoph-heiss/wgdash.git"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint && tsc --noEmit && stylelint src/styles/**/*.scss",
"lint:tsx": "next lint",
"lint:types": "tsc --noEmit",
"lint:scss": "stylelint src/styles/**/*.scss",
"create-user": "node ./create-user.js"
},
"dependencies": {
"@js-temporal/polyfill": "^0.4.1",
"blake2b": "^2.1.4",
"iron-session": "^6.1.3",
"knex": "^2.1.0",
"netlink": "git://github.com/christoph-heiss/node_netlink.git#rt/linkstats-abi-compat",
"next": "12.1.6",
"objection": "^3.0.1",
"preact": "^10.7.3",
"preact-render-to-string": "^5.2.0",
"react": "npm:@preact/compat@^17.1.1",
"react-dom": "npm:@preact/compat@^17.1.1",
"react-ssr-prepass": "npm:preact-ssr-prepass@^1.2.0",
"sqlite3": "^5.0.8"
},
"devDependencies": {
"@types/node": "^17.0.42",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"a17t": "^0.10.1",
"autoprefixer": "^10.4.7",
"eslint": "8.17.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "12.1.6",
"loader-utils": "^3.2.0",
"sass": "^1.52.3",
"stylelint": "^14.9.1",
"stylelint-config-standard-scss": "^4.0.0",
"tailwindcss": "^3.1.2",
"typescript": "^4.7.3"
},
"browserslist": [
"last 2 versions",
"> 5%"
]
}