-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 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
42
43
44
{
"name": "github-actions",
"private": true,
"version": "1.0.0",
"scripts": {
"validate-lock-file": "ts-node validate-lock-file.ts",
"prettier": "prettier --write \"**/**.{ts,tsx,js,json}\"",
"prettier:check": "prettier --list-different \"**/**.{ts,tsx,js,json}\"",
"clean": "yarn workspaces run clean && rm -rf node_modules yarn.lock",
"lint": "eslint . --ext=.js,.jsx,.ts,.tsx",
"build": "yarn workspaces run build",
"add-dist": "yarn workspaces run add-dist",
"release": "ts-node release.ts",
"test": "yarn workspaces run test"
},
"devDependencies": {
"@types/node": "14.14.28",
"@types/semver": "7.3.4",
"@types/yarnpkg__lockfile": "1.1.4",
"@yarnpkg/lockfile": "1.1.0",
"@typescript-eslint/eslint-plugin": "4.14.0",
"@typescript-eslint/parser": "4.14.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-import": "2.20.2",
"prettier": "2.1.1",
"ts-node": "9.1.1",
"typescript": "4.3.2",
"consola": "2.15.3",
"semver": "7.3.4"
},
"workspaces": [
"common",
"publish",
"install-cloud",
"deploy",
"git-release",
"release-pr-bot",
"generate-changelog",
"resolve-gate",
"generate-js-examples"
]
}