-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
33 lines (33 loc) · 1.15 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
{
"name": "fluxify",
"version": "0.2.7",
"license": "GPL-3.0-only",
"description": "neat little library for building apis",
"scripts": {
"fmt": "bun run prettier --write {lib,src}",
"lint": "bun run eslint --fix {lib,src}",
"check": "tsc --noEmit",
"bundle": "bun build ./src/main.ts --target bun --minify --outfile fluxify.js",
"test:dev": "bun --watch test",
"test:prod": "bun test --coverage",
"start:dev": "bun run --hot ./src/main.ts",
"start:prod": "bun run ./src/main.ts",
"schema:init": "bun ./lib/database/scripts/init.ts",
"schema:drop": "bun ./lib/database/scripts/drop.ts",
"schema:sync": "bun ./lib/database/scripts/sync.ts",
"schema:seed": "bun ./lib/database/scripts/seed.ts",
"schema:setup": "bun schema:init && bun schema:drop && bun schema:sync && bun schema:seed"
},
"devDependencies": {
"@types/bun": "1.1.6",
"@typescript-eslint/eslint-plugin": "6.16.0",
"@typescript-eslint/parser": "6.16.0",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-more": "1.0.5",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-unused-imports": "3.0.0",
"prettier": "2.8.8",
"typescript": "5.5.2"
}
}