-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.66 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
{
"name": "@firebase-scripts/core",
"version": "1.0.0",
"description": "A library of useful functions for firebase.",
"keywords": [
"firebase"
],
"repository": "github:WillBooster/firebase-scripts",
"license": "Apache-2.0",
"author": "WillBooster Inc.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.mjs",
"types": "dist/cjs/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "build-ts lib",
"cleanup": "yarn format && yarn lint-fix",
"format": "sort-package-json && yarn prettify",
"lint": "eslint --color \"./{scripts,src,tests}/**/*.{cjs,cts,js,jsx,mjs,mts,ts,tsx}\"",
"lint-fix": "yarn lint --fix",
"prettify": "prettier --cache --color --write \"**/{.*/,}*.{cjs,css,cts,htm,html,js,json,json5,jsonc,jsx,md,mjs,mts,scss,ts,tsx,vue,yaml,yml}\" \"!**/test-fixtures/**\"",
"stop-firebase": "kill-port --port 8080",
"test": "yarn test-wo-firebase && yarn test-w-firebase",
"test-w-firebase": "GCLOUD_PROJECT=test; yarn stop-firebase && firebase emulators:exec \"vitest run tests/with-firebase\"",
"test-w-firebase-debug": "GCLOUD_PROJECT=debug; concurrently \"firebase emulators:start --only firestore --project $GCLOUD_PROJECT\" \"wait-on http://127.0.0.1:4000 && vitest tests/with-firebase\"",
"test-wo-firebase": "vitest run tests/without-firebase",
"typecheck": "tsc --noEmit --Pretty"
},
"prettier": "@willbooster/prettier-config",
"dependencies": {
"minimal-promise-pool": "3.0.3"
},
"devDependencies": {
"@firebase/rules-unit-testing": "3.0.4",
"@types/eslint": "8.56.11",
"@types/micromatch": "4.0.9",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@willbooster/eslint-config-ts": "10.6.1",
"@willbooster/prettier-config": "9.1.3",
"build-ts": "12.1.0",
"concurrently": "9.1.0",
"conventional-changelog-conventionalcommits": "6.1.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-sort-class-members": "1.21.0",
"eslint-plugin-sort-destructure-keys": "2.0.0",
"eslint-plugin-unicorn": "55.0.0",
"firebase": "10.14.1",
"firebase-admin": "11.11.1",
"firebase-tools": "12.9.1",
"kill-port": "2.0.1",
"lint-staged": "15.2.10",
"micromatch": "4.0.8",
"prettier": "3.3.3",
"sort-package-json": "2.11.0",
"typescript": "5.7.2",
"vitest": "0.34.6",
"wait-on": "8.0.1"
},
"peerDependencies": {
"firebase-admin": ">=11"
},
"packageManager": "yarn@4.5.2",
"engines": {
"node": ">=16"
},
"publishConfig": {
"access": "public"
}
}