forked from kingofDaniel/functions-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 781 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 781 Bytes
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
{
"name": "functions-samples",
"version": "1.0.0",
"description": "Samples for Cloud Functions for Firebase",
"author": "Firebase (https://firebase.google.com/)",
"license": "Apache-2.0",
"scripts": {
"bootstrap": "pnpm -r install",
"lint": "pnpm -r --workspace-concurrency=4 --aggregate-output run lint",
"test": "pnpm -r --workspace-concurrency=4 --aggregate-output run test ",
"compile": "pnpm -r --workspace-concurrency=4 --aggregate-output run compile "
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-plugin-promise": "^4.3.1",
"pnpm": "^7.14.2",
"typescript": "^4.8.4"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@firebase/app-compat",
"@firebase/app-types"
]
}
}
}