Files
rabbit/package.json
Shusui MOYATANI 2aa85b3ed9 initial
2023-02-17 17:15:13 +09:00

79 lines
2.2 KiB
JSON

{
"name": "nostiger",
"version": "0.0.0",
"description": "",
"license": "AGPL-3.0-or-later",
"private": true,
"scripts": {
"start": "npm run generatePackageInfo && vite",
"dev": "npm run generatePackageInfo && vite",
"build": "npm run generatePackageInfo && vite build",
"serve": "npm run generatePackageInfo && vite preview",
"lint": "eslint .",
"tsc": "tsc --noEmit --skipLibCheck",
"test": "TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\"}' mocha",
"cover": "nyc npm run test",
"fix": "eslint --fix .",
"prepare": "husky install",
"generatePackageInfo": "node -e 'import(\"./scripts/generatePackageInfo.mjs\").then((m) => m.default())'",
"checkLicense": "node -e 'import(\"./scripts/checkLicense.mjs\").then((m) => m.default())'"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"autoprefixer": "^10.4.13",
"eslint": "^8.31.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.4",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-solid": "^0.9.2",
"eslint-plugin-tailwindcss": "^3.8.0",
"husky": "^8.0.3",
"license-checker": "^25.0.1",
"lint-staged": "^13.1.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"postcss": "^8.4.21",
"power-assert": "^1.6.1",
"prettier": "^2.8.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"vite": "^4.0.4",
"vite-plugin-solid": "^2.5.0",
"vite-plugin-solid-svg": "^0.6.0"
},
"dependencies": {
"@solidjs/meta": "^0.28.2",
"@solidjs/router": "^0.6.0",
"@tailwindcss/forms": "^0.5.3",
"@thisbeyond/solid-dnd": "^0.7.3",
"heroicons": "^2.0.15",
"nostr-tools": "^1.3.2",
"solid-js": "^1.6.9",
"tailwindcss": "^3.2.4",
"zod": "^3.20.6"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"reporter": [
"json",
"html",
"text"
],
"sourceMap": true,
"all": true
}
}