This repository has been archived by the owner on May 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 71
/
package.json
52 lines (52 loc) · 1.76 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
{
"name": "github-actions",
"version": "0.0.0",
"author": "Marvin Pinto",
"license": "MIT",
"private": true,
"workspaces": [
"packages/!(aws-ssm-secrets|keybase-notifications)"
],
"repository": {
"type": "git",
"url": "https://github.com/marvinpinto/actions"
},
"scripts": {
"test": "yarn jest --env=node --colors --verbose true",
"build": "lerna run build",
"clean": "lerna run clean && rm -rf node_modules yarn-error.log",
"reinstall": "yarn clean; yarn install --frozen-lockfile",
"lint": "lerna run lint && yarn run lint:eslint && yarn run lint:prettier && yarn run lint:commits",
"lint:eslint": "eslint --max-warnings=0 .",
"lint:prettier": "prettier --check .",
"lint:commits": "commitlint --to .",
"lintfix": "lerna run lintfix && yarn run lintfix:eslint && yarn run lintfix:prettier",
"lintfix:eslint": "eslint --fix .",
"lintfix:prettier": "prettier --write .",
"release": "lerna version"
},
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/preset-env": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@types/jest": "^29.5.2",
"@types/node": "^15.0.1",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"babel-jest": "^29.5.0",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.2",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"jest-circus": "^29.5.0",
"lerna": "^7.0.2",
"prettier": "^2.8.8",
"typescript": "5.0.4"
},
"dependencies": {}
}