-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.96 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"author": "Ben Saufley<[email protected]>",
"dependencies": {
"@alt3/sequelize-to-json-schemas": "^0.3.56",
"@fastify/etag": "^5.2.0",
"@fastify/static": "^7.0.4",
"@fastify/swagger": "^8.15.0",
"@fastify/swagger-ui": "^4.1.0",
"ajv-ts": "^0.7.1",
"chokidar": "^3.6.0",
"fastify": "^4.28.1",
"minimist": "^1.2.8",
"music-metadata": "^10.5.0",
"pino": "^8.21.0",
"pino-http": "^9.0.0",
"sequelize": "^6.37.3",
"sqlite3": "^5.1.7",
"umzug": "^3.8.1"
},
"devDependencies": {
"@bensaufley/eslint-config": "^1.1.3",
"@preact/preset-vite": "^2.8.2",
"@preact/signals": "^1.3.0",
"@testing-library/preact": "^3.2.4",
"@types/chroma-js": "^2.4.4",
"@types/js-cookie": "^3.0.6",
"@types/json-schema": "^7.0.15",
"@types/minimist": "^1.2.5",
"@types/node": "^20.14.5",
"@types/validator": "^13.11.9",
"@types/wuzzy": "^0.1.3",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"@vitest/coverage-istanbul": "^2.0.5",
"bootstrap": "^5.3.3",
"bootstrap-icons": "^1.11.3",
"chroma-js": "^3.0.0",
"clsx": "^2.1.1",
"dayjs": "^1.11.10",
"esbuild": "^0.23.1",
"esbuild-plugin-alias-path": "^2.0.2",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prefer-arrow-functions": "^3.3.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^12.0.0",
"js-cookie": "^3.0.5",
"jsdom": "^25.0.0",
"nodemon": "^3.1.0",
"npm-run-all": "^4.1.5",
"openapi-types": "^12.1.3",
"pino-pretty": "^11.0.0",
"postcss": "^8.4.38",
"postcss-preset-env": "^9.5.4",
"preact": "^10.23.2",
"prettier": "^3.2.5",
"react-bootstrap": "^2.10.3",
"rimraf": "^6.0.1",
"style-loader": "^3.3.4",
"stylelint": "^16.3.1",
"stylelint-config-standard": "^36.0.0",
"touchsweep": "^2.2.0",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.7.2",
"typescript": "^5.5.4",
"vavite": "^4.1.2",
"vite": "^5.4.6",
"vite-plugin-env-compatible": "^2.0.1",
"vite-plugin-svgr": "^4.2.0",
"vitest": "^2.0.5",
"wuzzy": "^0.1.8"
},
"engines": {
"node": ">=22.0.0"
},
"license": "MIT",
"exports": "./.build/server/index.js",
"name": "audiobook-catalog",
"repository": "https://github.com/bensaufley/audiobook-catalog",
"scripts": {
"build:app": "APP_ENV=production NODE_ENV=production vavite build",
"build:scripts": "tsx ./script/build/binaries.ts",
"build": "npm-run-all --parallel --continue-on-error --aggregate-output build:app build:scripts",
"check": "npm-run-all --parallel --continue-on-error --aggregate-output typecheck lint",
"dev": "vavite serve",
"format": "npm-run-all --parallel --continue-on-error --aggregate-output format:es format:css",
"format:css": "stylelint \"${@:-src/**/*.css}\" --fix",
"format:es": "bslint --format",
"lint": "npm-run-all --parallel --continue-on-error --aggregate-output lint:es lint:css",
"lint:css": "stylelint \"${@:-src/**/*.css}\"",
"lint:es": "bslint",
"start": "node .build/server/index.js",
"script": "runScript() { file=\"$1.ts\"; shift; tsx \"./src/scripts/$file\" \"${@}\"; }; runScript",
"test": "vitest",
"typecheck:client": "tsc --noEmit --project ./src/client/tsconfig.json",
"typecheck:server": "tsc --noEmit --project ./src/server/tsconfig.json",
"typecheck:shared": "tsc --noEmit --project ./tsconfig.json",
"typecheck": "npm-run-all --parallel --continue-on-error --aggregate-output typecheck:client typecheck:server typecheck:shared",
"version": "sh ./script/build/version.sh"
},
"type": "module",
"version": "0.5.0-11"
}