-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.42 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
{
"name": "toot-sweet",
"version": "0.1.0",
"description": "",
"type": "module",
"types": "./lib/types/",
"exports": {
".": "./lib/index.js",
"./middleware": "./lib/middleware/index.js",
"./routes": "./lib/routes/index.js",
"./models": "./lib/models/index.js"
},
"scripts": {
"start": "node server.js",
"test": "node --test --test-reporter=spec test/",
"coverage": "c8 npm test",
"lint": "tsc",
"lint:watch": "tsc --watch"
},
"keywords": [],
"author": "",
"license": "AGPL-3.0",
"devDependencies": {
"@sveltejs/adapter-node": "^1.3.1",
"@sveltejs/adapter-static": "^2.0.3",
"@types/express": "^5.0.0",
"c8": "^10.1.3",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"lint-staged": "15.2.11",
"prettier": "3.4.2",
"ts-node": "^10.9.2",
"typescript": "5.7.2"
},
"dependencies": {
"@sentry/node": "^8.47.0",
"@sentry/profiling-node": "^8.47.0",
"@sentry/svelte": "^8.47.0",
"@sentry/tracing": "^7.114.0",
"@small-tech/https": "5.2.0",
"ajv": "8.17.1",
"body-parser": "1.20.3",
"ejs": "3.1.10",
"env-schema": "6.0.0",
"express": "4.21.2",
"helmet": "8.0.0",
"http-signature": "1.4.0",
"pg": "8.13.1",
"pg-hstore": "2.3.4",
"sqlite3": "5.1.7"
},
"prettier": {
"extends": [
"prettier"
]
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}