-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2 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
{
"name": "app4event-backend",
"version": "0.0.0",
"scripts": {
"build": "tsc",
"lint": "eslint '**/*.ts' -f codeframe",
"prepare": "npm run build",
"prepublish": "npm run build",
"build-static": "npm run build-static:schema && npm run build-static:types",
"build-static:schema": "npx --package @openapitools/openapi-generator-cli openapi-generator-cli generate -i src/app4event/openapi.yaml -g openapi -o src/generated/openapi",
"build-static:types": "npx openapi-typescript src/app4event/openapi.yaml --output src/generated/types/openapi.ts",
"cs:eslint:check": "eslint --ignore-path .gitignore '**/*.ts' -f codeframe",
"cs:eslint:fix": "npm run cs:eslint:check -- --fix",
"cs:prettier:check": "prettier --ignore-path .gitignore --check '**/*.{ts,js,json,md}'",
"cs:prettier:fix": "npm run cs:prettier:check -- --write '**/*.{ts,js,json,md}'"
},
"engines": {
"node": "20"
},
"files": [
"lib/**",
"src/**",
"firestore.rules"
],
"bin": {
"a4e-createAdmin": "./bin/create-admin.js",
"a4e-setPassword": "./bin/set-password.js"
},
"main": "lib/index.js",
"dependencies": {
"@ackee/styleguide-backend-config": "^0.5.0",
"@types/node": "^20.16.14",
"@types/sanitize-html": "^2.3.1",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.8.0",
"airtable": "^0.11.1",
"ajv": "^8.2.0",
"eslint": "^7.25.0",
"eslint-plugin-import": "^2.22.0",
"firebase-admin": "^12.6.0",
"firebase-functions": "^6.0.1",
"google-auth-library": "^7.1.1",
"got": "^11.8.6",
"iso-639-1": "^2.1.9",
"lodash": "^4.17.21",
"open": "^8.2.0",
"prettier": "^2.2.1",
"sanitize-html": "^2.4.0",
"typescript": "^5.6.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"@openapitools/openapi-generator-cli": "^2.2.6",
"firebase-functions-test": "^0.2.0",
"json-schema-to-typescript": "^10.1.4",
"openapi-typescript": "^3.2.3"
},
"private": true
}