-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.12 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
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
{
"name": "@technologiestiftung/parla-api",
"version": "1.19.0",
"description": "",
"main": "dist/index.js",
"type": "module",
"scripts": {
"test": "NODE_ENV='test' NODE_OPTIONS='--no-warnings' c8 ava --serial",
"lint": "ESLINT_USE_FLAT_CONFIG=true eslint \"src/**/*\"",
"dev": "nodemon",
"dev:cors": "NODE_ENV=none nodemon",
"build": "mkdir -p dist && node esbuild.config.cjs",
"start": "node dist/index.js",
"create:types": "supabase gen types typescript --local > ./src/lib/database.ts && prettier --write ./src/lib/database.ts"
},
"keywords": [],
"author": "ff6347 <hash@ff6347.email>",
"license": "MIT",
"devDependencies": {
"@ava/typescript": "5.0.0",
"@saithodev/semantic-release-backmerge": "4.0.1",
"@technologiestiftung/eslint-config": "0.3.1",
"@technologiestiftung/eslint-plugin": "0.1.1",
"@technologiestiftung/semantic-release-config": "1.2.4",
"@types/common-tags": "1.8.4",
"@types/node": "22.7.7",
"ava": "6.1.3",
"c8": "10.1.2",
"cz-conventional-changelog": "3.3.0",
"dotenv": "16.4.5",
"esbuild": "0.24.0",
"eslint": "9.13.0",
"glob": "11.0.0",
"globals": "15.11.0",
"msw": "2.4.11",
"nodemon": "3.1.7",
"pino-pretty": "11.3.0",
"prettier": "3.3.3",
"semantic-release": "24.1.3",
"supabase": "1.204.3",
"tsx": "4.19.1",
"typescript": "5.6.3"
},
"prettier": {
"tabWidth": 2,
"semi": true,
"singleQuote": false,
"useTabs": true,
"printWidth": 80,
"overrides": [
{
"files": [
"*.yml",
"*.yaml"
],
"options": {
"useTabs": false
}
}
]
},
"nodemonConfig": {
"restartable": "rs",
"verbose": true,
"execMap": {
"js": "node --harmony"
},
"exec": "tsx ./src/index.ts",
"watch": [
"src"
],
"env": {
"NODE_ENV": "development"
},
"ext": "ts,json"
},
"dependencies": {
"@fastify/cors": "10.0.1",
"@fastify/rate-limit": "10.1.1",
"@supabase/supabase-js": "2.45.6",
"common-tags": "1.8.2",
"fastify": "5.0.0",
"fluent-json-schema": "5.0.0",
"openai": "4.68.1",
"react-device-detect": "2.2.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}