This repository has been archived by the owner on Nov 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
62 lines (62 loc) · 2.73 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
54
55
56
57
58
59
60
61
62
{
"name": "sanity-runner",
"version": "1.0.0",
"description": "Automate your sanity tests against a chrome browser running in AWS Lambda",
"repository": {
"type": "git",
"url": "https://github.com/tophat/sanity-runner.git"
},
"scripts": {
"commit": "dlx git-cz",
"eslint": "eslint --max-warnings 0",
"lint:fix": "run eslint --fix .",
"lint": "run eslint .",
"release:dry": "yarn ts-node --transpile-only $(yarn bin monodeploy) --config-file monodeploy.config.ts --log-level 0 --force-write-change-files --changelog-filename artifacts/CHANGELOG.md --dry-run",
"prerelease:dry": "run release:dry --prerelease",
"release": "yarn ts-node --transpile-only $(yarn bin monodeploy) --config-file monodeploy.config.ts --log-level 0 --push --auto-commit --plugins @monodeploy/plugin-github",
"prerelease": "run release --prerelease",
"build": "yarn workspaces foreach -vpt --no-private --topological-dev run prepack",
"dev:client": "yarn ts-node --transpile-only $(yarn workspace sanity-runner-client bin sanity-runner) --local --output-dir output",
"dev:service": "yarn ts-node --transpile-only $(yarn workspace sanity-runner-service bin sanity-runner-service)",
"docs": "yarn workspace sanity-runner-docs build",
"docs:dev": "yarn workspace sanity-runner-docs develop"
},
"workspaces": [
"terraform",
"gatsby",
"packages/**"
],
"author": "Top Hat Monocle Corp. <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/tophat/sanity-runner/issues"
},
"homepage": "https://sanity-runner.js.org",
"devDependencies": {
"@monodeploy/plugin-github": "^1.0.0",
"@tophat/conventional-changelog-config": "^1.0.1",
"@tophat/eslint-config": "^7.0.1",
"@tophat/eslint-import-resolver-require": "^0.1.4",
"@types/node": "^18.16.0",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"all-contributors-cli": "^6.24.0",
"esbuild": "^0.17.18",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-node": "^0.3.7",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"monodeploy": "^4.0.0",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"typescript": "5.0.4"
},
"private": true,
"packageManager": "[email protected]"
}