-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
37 lines (37 loc) · 1 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
{
"name": "firestore-storage",
"version": "4.0.0",
"description": "A typed wrapper around Firestore including a query-builder and an in-memory implementation for testing",
"engines": {
"node": ">=14"
},
"private": true,
"scripts": {
"test": "lerna run --stream test",
"build": "lerna run --stream build",
"preversion": "git pull && pnpm build",
"release": "pnpm build && lerna publish",
"lerna": "lerna",
"emulators": "firebase emulators:start --only firestore --project firestore-storage-local",
"prettier": "prettier"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"repository": {
"type": "git",
"url": "[email protected]:freshfox/firestore-storage.git"
},
"author": "Dominic Bartl",
"license": "MIT",
"homepage": "https://github.com/freshfox/firestore-storage",
"devDependencies": {
"esbuild": "^0.19.11",
"firebase-tools": "^12.8.0",
"lerna": "^4.0.0",
"mocha-junit-reporter": "^2.2.1",
"prettier": "^2.8.6"
}
}