-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.36 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
{
"name": "isthepatchout-notifications",
"type": "module",
"version": "0.0.0",
"author": "BeeeQueue <[email protected]>",
"license": "MIT",
"private": true,
"engines": {
"bun": "^1.1.22"
},
"simple-git-hooks": {
"pre-commit": "bun lint-staged"
},
"lint-staged": {
"*.{js,ts,vue,html,json}": [
"prettier --write"
]
},
"scripts": {
"build": "tsup",
"dev": "bun run --env --watch src/index.ts",
"lint": "eslint src",
"prepare": "is-ci || simple-git-hooks",
"start": "bun dist/index.js",
"test": "bun test --env",
"typecheck": "tsc --noEmit --project tsconfig.json"
},
"resolutions": {
"is-core-module": "npm:@nolyfill/is-core-module@^1"
},
"devDependencies": {
"@antfu/eslint-config": "3.0.0",
"@tsconfig/bun": "1.0.7",
"@tsconfig/strictest": "2.0.5",
"@types/bun": "1.1.8",
"@types/web-push": "3.6.3",
"dotaver": "1.0.1",
"dotenv": "16.4.5",
"drizzle-kit": "0.24.2",
"drizzle-orm": "0.33.0",
"eslint": "9.9.1",
"is-ci": "3.0.1",
"lint-staged": "15.2.9",
"msw": "2.4.1",
"onchange": "7.1.0",
"p-queue": "8.0.1",
"pino": "9.3.2",
"pino-pretty": "11.2.2",
"postgres": "3.4.4",
"prettier": "3.3.3",
"simple-git-hooks": "2.11.1",
"tsup": "8.2.4",
"typescript": "5.5.4",
"web-push": "3.6.7",
"xior": "0.6.1"
}
}