This repository has been archived by the owner on Apr 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpackage.json
53 lines (53 loc) · 1.69 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
{
"name": "ApolloOffline",
"version": "1.0.0",
"private": true,
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --runInBand",
"coverage": "jest --coverage",
"size": "size-limit",
"cleanInstall": "lerna exec yarn install --ignore-scripts",
"bootstrap": "lerna bootstrap --no-ci",
"lint": "eslint '*/*/*/src/**/*.ts' '*/*/*/test/**/*.ts'",
"lint-fix": "eslint '*/*/*/src/**/*.ts' '*/*/*/test/**/*.ts' --fix",
"build": "lerna run build",
"watch": "lerna run watch",
"release:prep": "./scripts/prepareRelease.sh",
"release:validate": "./scripts/validateRelease.sh",
"updateXml": "lerna exec -- \\$LERNA_ROOT_PATH/scripts/updateCordovaVersions.sh",
"publish:canary": "lerna publish --canary",
"publish": "./scripts/publishRelease.sh",
"link": "lerna exec yarn link",
"clean": "npm-run-all clean:*",
"clean:packages": "lerna run clean",
"clean:dependencies": "lerna clean --yes",
"update:check": "lerna exec --concurrency 1 -- ncu",
"update:run": "lerna exec -- ncu -a --removeRange -x 'fh-js-sdk'",
"generate:docs": "./scripts/docs.sh"
},
"devDependencies": {
"@size-limit/preset-small-lib": "4.6.0",
"@types/graphql": "14.2.3",
"@types/jest": "26.0.14",
"@typescript-eslint/eslint-plugin": "2.34.0",
"@typescript-eslint/parser": "2.34.0",
"del-cli": "3.0.1",
"eslint": "7.10.0",
"jest": "26.5.2",
"lerna": "3.22.1",
"npm-run-all": "4.1.5",
"size-limit": "4.6.0",
"ts-jest": "26.4.1",
"ts-node": "8.10.2",
"typescript": "3.9.7"
},
"dependencies": {
"@types/mocha": "8.0.3",
"@types/node": "12.12.64"
},
"workspaces": [
"packages/*/*"
]
}