This repository has been archived by the owner on Feb 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.31 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
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@technologiestiftung/stadtpuls-api",
"private": true,
"version": "3.2.1",
"description": "An API for the stadtpuls.com project",
"author": "ff6347 <fabianmoronzirfas@protonmail.ch>",
"homepage": "https://github.com/technologiestiftung/stadtpuls-api/tree/main/packages/stadtpuls-api#readme",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "restricted"
},
"repository": {
"type": "git",
"url": "git+https://github.com/technologiestiftung/stadtpuls-api.git"
},
"files": [
"src",
"dist",
"docs"
],
"scripts": {
"test": "inpyjamas-scripts test --runInBand",
"test:ci": "jest --runInBand --forceExit",
"generate:types": "ts-node -r dotenv/config scripts/create-supabase-types.ts",
"prebuild": "rimraf dist",
"postbuild": "tsc --noEmit --project tsconfig.build.json",
"build": "node esbuild.config.js",
"dev": "nodemon",
"test:supabase:start": "docker compose --remove-orphan -f ./dev-tools/local-supabase/docker/docker-compose.yml up -d ",
"test:supabase:stop": "docker compose -f ./dev-tools/local-supabase/docker/docker-compose.yml down",
"commit": "cz"
},
"bugs": {
"url": "https://github.com/technologiestiftung/stadtpuls-api/issues"
},
"devDependencies": {
"@faker-js/faker": "7.3.0",
"@inpyjamas/scripts": "0.1.12-alpha",
"@saithodev/semantic-release-backmerge": "2.1.2",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "8.0.4",
"@semantic-release/npm": "9.0.1",
"@semantic-release/release-notes-generator": "10.0.3",
"@technologiestiftung/semantic-release-config": "1.2.0",
"@technologiestiftung/stadtpuls-supabase-definitions": "1.0.1",
"@types/ajv-errors": "1.0.3",
"@types/bcrypt": "5.0.0",
"@types/config": "0.0.41",
"@types/ioredis": "4.28.8",
"@types/jsonwebtoken": "8.5.8",
"@types/node-fetch": "2.6.2",
"@types/pg": "8.6.5",
"@types/uuid": "8.3.4",
"commitizen": "4.2.4",
"cz-conventional-changelog": "3.3.0",
"date-fns": "2.28.0",
"dotenv": "16.0.1",
"esbuild": "0.14.48",
"eslint": "8.19.0",
"fast-jwt": "2.0.2",
"glob": "8.0.3",
"is-ci": "3.0.1",
"jest-each": "27.5.1",
"jsonwebtoken": "8.5.1",
"node-fetch": "2.6.1",
"nodemon": "2.0.18",
"semantic-release": "19.0.3",
"ts-jest": "26.5.6",
"ts-node": "10.8.2",
"typescript": "4.7.4"
},
"dependencies": {
"@fastify/auth": "3.0.2",
"@fastify/cors": "8.0.0",
"@fastify/helmet": "9.1.0",
"@fastify/jwt": "6.2.0",
"@fastify/postgres": "5.0.0",
"@fastify/rate-limit": "7.0.0",
"@humanwhocodes/env": "2.2.0",
"@supabase/supabase-js": "1.31.1",
"ajv-errors": "3.0.0",
"bcrypt": "5.0.1",
"config": "3.3.7",
"fastify": "4.2.0",
"fastify-blipp": "3.1.0",
"fastify-plugin": "3.0.1",
"fastify-sensible": "3.1.2",
"fluent-json-schema": "3.1.0",
"ioredis": "4.28.5",
"make-promises-safe": "5.1.0",
"pg": "8.7.3",
"pino": "8.1.0",
"pino-logflare": "0.3.12",
"pino-pretty": "8.1.0",
"pino-syslog": "2.0.0",
"uuid": "8.3.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}