-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
89 lines (89 loc) · 2.16 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
{
"version": "0.2.5",
"description": "A package that helps with the management and expansion of a maintainable firebase backend",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint src test",
"lint:fix": "tsdx lint src test --fix",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why",
"release": "auto shipit"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"trailingComma": "es5",
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"bracketSpacing": true,
"arrowParens": "always",
"jsxSingleQuote": true,
"quoteProps": "consistent"
},
"name": "firebase-backend",
"module": "dist/firebase-backend.esm.js",
"size-limit": [
{
"path": "dist/firebase-backend.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/firebase-backend.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@size-limit/preset-small-lib": "^6.0.1",
"@types/express": "^4.17.11",
"@types/glob": "^7.1.3",
"auto": "^10.20.4",
"husky": "^5.1.3",
"size-limit": "^4.10.1",
"tsdx": "^0.14.1",
"tslib": "^2.1.0",
"typescript": "^4.2.3"
},
"dependencies": {
"@types/cors": "^2.8.10",
"@types/express-fileupload": "^1.1.6",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-fileupload": "^1.2.1",
"firebase-admin": "^9.6.0",
"firebase-functions": "^3.13.2",
"glob": "^7.1.6"
},
"homepage": "https://github.com/filledstacks/firebase-backend#readme",
"repository": "git://github.com/filledstacks/firebase-backend.git",
"bugs": {
"url": "git+https://github.com/filledstacks/firebase-backend/issues"
},
"author": "FilledStacks <[email protected]>",
"auto": {
"plugins": [
"npm"
],
"onlyPublishWithReleaseLabel": true,
"baseBranch": "main"
}
}