-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.53 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.53 KB
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
{
"name": "bsmiweb",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "src/index.js",
"scripts": {
"build": "esbuild src/sentry-browser.js --bundle --minify --format=iife --global-name=Sentry --outfile=public/sentry.min.js",
"lint": "eslint .",
"test": "DATABASE_URL='file::memory:' NODE_OPTIONS='--experimental-vm-modules --experimental-transform-types' jest"
},
"author": "Gea-Suan Lin <gslin@gslin.com>",
"license": "MIT",
"dependencies": {
"@prisma/adapter-better-sqlite3": "^7.4.0",
"@prisma/adapter-mariadb": "^7.5.0",
"@prisma/client": "^7.4.0",
"@sentry/node": "^10.44.0",
"better-sqlite3": "^12.6.2",
"compression": "^1.8.1",
"dotenv": "^17.3.1",
"ejs": "^4.0.1",
"express": "^5.2.1",
"helmet": "^8.1.0",
"html-minifier-terser": "^7.2.0",
"node-schedule": "^2.1.1"
},
"jest": {
"extensionsToTreatAsEsm": [
".ts"
],
"transform": {
"\\.ts$": [
"@swc/jest",
{
"jsc": {
"parser": {
"syntax": "typescript"
},
"target": "esnext"
},
"module": {
"type": "es6"
}
}
]
}
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@sentry/browser": "^10.44.0",
"@jest/globals": "^30.2.0",
"@swc/core": "^1.15.11",
"@swc/jest": "^0.2.39",
"esbuild": "^0.27.4",
"eslint": "^10.0.0",
"globals": "^17.3.0",
"jest": "^30.2.0",
"prisma": "^7.4.0",
"supertest": "^7.2.2"
}
}