This repository has been archived by the owner on Aug 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.98 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
{
"devDependencies": {
"@semantic-release/changelog": "6.0.1",
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/git": "10.0.1",
"@semantic-release/npm": "9.0.1",
"@semantic-release/release-notes-generator": "10.0.3",
"@types/jest": "27.4.1",
"@typescript-eslint/eslint-plugin": "5.18.0",
"@typescript-eslint/parser": "5.18.0",
"cz-conventional-changelog": "3.3.0",
"dotenv": "16.0.0",
"esbuild": "0.14.32",
"eslint": "8.12.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-jest": "26.1.3",
"eslint-plugin-prettier": "4.0.0",
"glob": "8.0.3",
"jest": "28.1.0",
"nodemon": "2.0.15",
"openapi-typescript": "5.2.0",
"prettier": "2.6.2",
"rimraf": "3.0.2",
"ts-node": "10.7.0",
"typescript": "4.6.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"name": "@technologiestiftung/qtrees-backend",
"description": "Backend / API of Qtrees",
"version": "1.0.0",
"scripts": {
"test": "jest",
"test:ci": "jest --runInBand --forceExit",
"prebuild": "rimraf dist",
"postbuild": "tsc --noEmit --project tsconfig.build.json",
"build": "node esbuild.config.js",
"dev": "nodemon",
"commit": "cz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/technologiestiftung/qtrees-backend.git"
},
"keywords": [
"supabase",
"qtrees",
"technologiestiftung"
],
"author": "ff6347 <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/technologiestiftung/qtrees-backend/issues"
},
"homepage": "https://github.com/technologiestiftung/qtrees-backend#readme",
"dependencies": {
"@humanwhocodes/env": "2.2.0",
"@supabase/supabase-js": "1.33.3",
"fastify": "3.28.0",
"fastify-auth": "1.1.0",
"fastify-cors": "6.0.3",
"fastify-jwt": "4.1.3",
"fastify-sensible": "3.1.2",
"fluent-json-schema": "3.1.0",
"make-promises-safe": "5.1.0"
}
}