-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
76 lines (76 loc) · 2.63 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"author": "A. David Thyresson <[email protected]>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*",
"packages/plugins/*",
"packages/setup/*"
],
"scripts": {
"build": "bob build && yarn postbuild",
"ci:build": "yarn build && yarn lint && yarn test && yarn ts:check && yarn bob check",
"ci:lint": "eslint --config .eslintrc.json --ext .ts . --max-warnings 0 --output-file eslint_report.json --format json",
"lint": "eslint --config .eslintrc.json --ext .ts . --max-warnings 0",
"lint:prettier": "prettier --cache --ignore-path .gitignore --check .",
"postbuild": "rm -rf packages/setup/redwoodjs/dist/templates && mkdir packages/setup/redwoodjs/dist/templates && cp -rf packages/setup/redwoodjs/templates/* packages/setup/redwoodjs/dist/templates",
"postinstall": "patch-package",
"prebuild": "rimraf packages/*/dist packages/plugins/*/dist packages/setup/*/dist",
"prepare": "husky install",
"prerelease": "yarn build",
"prettier": "prettier --cache --ignore-path .gitignore --write --list-different .",
"release": "changeset publish",
"test": "jest",
"test:ci": "jest --coverage",
"test:core": "jest ./packages/core --coverage",
"ts:check": "tsc --noEmit"
},
"devDependencies": {
"@babel/core": "7.22.5",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-decorators": "7.22.5",
"@babel/preset-env": "7.22.5",
"@babel/preset-typescript": "7.22.5",
"@changesets/changelog-github": "0.4.8",
"@changesets/cli": "^2.26.1",
"@graphql-tools/schema": "10.0.0",
"@theguild/prettier-config": "1.2.0",
"@types/jest": "29.5.2",
"@types/node": "18.16.18",
"@typescript-eslint/eslint-plugin": "5.60.0",
"@typescript-eslint/parser": "5.60.0",
"bob-the-bundler": "4.1.1",
"chalk": "5.3.0",
"eslint": "8.48.0",
"eslint-config-prettier": "8.8.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-n": "15.7.0",
"eslint-plugin-package-json": "^0.1.4",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-unicorn": "47.0.0",
"husky": "8.0.3",
"jest": "29.5.0",
"lint-staged": "13.2.3",
"patch-package": "7.0.2",
"prettier": "2.8.8",
"pretty-quick": "3.1.3",
"rimraf": "5.0.1",
"ts-jest": "29.1.0",
"ts-node": "10.9.1",
"typescript": "5.1.3"
},
"resolutions": {
"esbuild": "0.18.6",
"graphql": "16.6.0",
"prettier": "2.8.8"
},
"lint-staged": {
"packages/**/src/**/*.{ts,tsx}": [
"eslint --fix"
],
"**/*.{ts,tsx,graphql,yml,json}": [
"prettier --write"
]
}
}