-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.27 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
{
"author": "Transcend Inc.",
"name": "@transcend-io/examples",
"description": "Mini monorepo containing example code for integrating into Transcend",
"version": "0.0.0",
"homepage": "https://github.com/transcend-io/examples",
"repository": {
"type": "git",
"url": "https://github.com/transcend-io/examples.git"
},
"license": "MIT",
"scripts": {
"update:sdks": "yarn set version from sources && yarn sdks base",
"update:deps": "yarn upgrade-interactive && yarn update:sdks",
"build": "yarn tsc --build",
"clean": "yarn tsc --build --clean",
"lint": "yarn eslint javascript/src --ext .ts,.js",
"prepublish": "yarn build"
},
"workspaces": [
"javascript",
"trackers-demo",
"typescript"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"@yarnpkg/pnpify": "^3.1.1",
"@yarnpkg/sdks": "^2.6.0",
"depcheck": "^1.4.3",
"eslint": "^8.10.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jsdoc": "^37.9.4",
"prettier": "^2.5.1",
"typescript": "^4.6.3"
},
"packageManager": "[email protected]"
}