-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (25 loc) · 1.05 KB
/
package.json
File metadata and controls
27 lines (25 loc) · 1.05 KB
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": "multi-framework-nightly-tests",
"version": "0.1.0",
"private": true,
"author": "Firebase <firebase-support@google.com> (https://firebase.google.com/)",
"license": "Apache-2.0",
"workspaces": [
"js-sdk-framework-tests/*"
],
"scripts": {
"clean": "lerna clean --yes && rm -rf node_modules",
"setup:nextjs": "lerna run setup --scope js-sdk-framework-tests-nextjs",
"build:nextjs": "lerna run build --scope js-sdk-framework-tests-nextjs",
"test:nextjs": "lerna run test --scope js-sdk-framework-tests-nextjs",
"lint:nextjs": "lerna run lint --scope js-sdk-framework-tests-nextjs",
"dev:nextjs": "lerna run dev --scope js-sdk-framework-tests-nextjs",
"setup:angular": "lerna run setup --scope js-sdk-framework-tests-angular",
"build:angular": "lerna run build --scope js-sdk-framework-tests-angular",
"test:angular": "lerna run test --scope js-sdk-framework-tests-angular",
"lint:angular": "lerna run lint --scope js-sdk-framework-tests-angular"
},
"devDependencies": {
"lerna": "^8.0.0"
}
}