-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
101 lines (101 loc) · 3.17 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
{
"name": "firelord",
"version": "2.8.20",
"description": "🔥 Write V9 like Firestore Admin code with extreme type safety.",
"author": "tylim",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"un": "rm -rf node_modules && rm -rf package-lock.json",
"i": "npm run un && npm i && npx husky install",
"tsc": "tsc",
"lint": "eslint . --ext .ts --fix",
"pretty": "pretty-quick --stage --branch main",
"rollup": "rm -rf dist && rollup -c",
"build": "rm -rf dist && tsc -p tsconfig.prod.json",
"link": "npm unlink firelord && npm link && npm link firelord",
"commit": "git commit --no-verify",
"kill": "kill-port 8080",
"test": "npm run kill && (firebase emulators:exec --only firestore \"vitest --config vitest.emulator.ts\") && npm run kill && vitest",
"knip": "knip",
"pub": "npm run build && npm publish",
"dev": "---------------------dev------------------------",
"d-link": "npm run build && npm run b-un && npm run link",
"d-test": "tsc && npm test",
"d-beta": "npm run build && npm publish --tag beta",
"built": "-------------test built file-----------------------",
"b-un": "cd codeForDoc && npm run un",
"b-tsc": "tsc -p tsconfig.doc.json",
"b-test": "npm run kill && (firebase emulators:exec --only firestore \"vitest --config=vitest.emulator.doc.ts\") && npm run kill && vitest --config vitest.config.doc.ts",
"b-q-tsc": "npm run d-link && npm run b-tsc",
"b-q-test": "npm run b-q-tsc && npm run b-test",
"published": "-------------test published file-----------------------",
"p-i": "cd codeForDoc && npm run i",
"p-tsc": "cd codeForDoc && npm run tsc",
"p-test": "cd codeForDoc && npm test",
"p-q-tsc": "npm run p-i && npm run p-tsc",
"p-q-test": "npm run p-q-tsc && npm run p-test"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md,json,yml}": [
"eslint --fix",
"npm run pretty"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/tylim88/firelord.git"
},
"bugs": {
"url": "https://github.com/tylim88/firelord/issues"
},
"homepage": "https://firelordjs.com/firelord/quick_start",
"keywords": [
"firebase",
"firestore",
"wrapper",
"typescript",
"scalable",
"type-safe",
"V9",
"admin"
],
"devDependencies": {
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.0.0",
"@types/lodash": "^4.14.191",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"@vitest/coverage-v8": "^2.0.5",
"betwin": "^2.1.2",
"dotenv": "^16.0.3",
"eslint": "^8.36.0",
"eslint-cli": "^1.1.1",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unused-imports": "^2.0.0",
"eslint-plugin-yml": "^1.5.0",
"firebase-admin": "^12.4.0",
"husky": "^8.0.3",
"kill-port": "^2.0.1",
"knip": "^2.17.1",
"lint-staged": "^13.2.0",
"lodash": "^4.17.21",
"pick-random": "^4.0.0",
"prettier": "^2.8.6",
"pretty-quick": "^3.1.3",
"rollup": "^2.79.1",
"typescript": "^5.4.2",
"vitest": "^2.0.5"
},
"peerDependencies": {
"firebase-admin": "^12.4.0"
}
}