generated from remirror/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
146 lines (146 loc) · 6.12 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"name": "root",
"private": true,
"homepage": "https://github.com/remirror/backend",
"repository": "https://github.com/remirror/backend",
"scripts": {
"audit": "pnpm audit --audit-level high",
"build": "preconstruct build",
"build:dev": "preconstruct dev",
"changeset": "changeset",
"check:pnpm": "node support/scripts/check-pnpm.js",
"checks": "run-s lint typecheck test",
"checks:ci": "run-s lint typecheck",
"checks:disable": "rimraf ./.config.json",
"checks:enable": "cpy support/.config.sample.json ./ --rename=\".config.json\"",
"checks:fix": "run-s -c fix typecheck test",
"checks:release": "run-s checks build test:e2e",
"ci:version": "run-s ci:version:changeset ci:version:date ci:version:repo fix:prettier ci:version:install",
"ci:version:changeset": "changeset version",
"ci:version:check": "run-s ci:version:pr ci:version:changeset ci:version:repo",
"ci:version:date": "node support/scripts/changelog-dates.js",
"ci:version:install": "unset CI && pnpm install --frozen-lockfile=false",
"ci:version:pr": "node support/scripts/enable-pr-changeset.js",
"ci:version:repo": "unset CI && run-s fix:repo update:workspace",
"clean": "pnpm if-clean git clean -- -fdx --exclude=.config.json --exclude=node_modules --exclude=**/node_modules",
"clean:all": "git clean -fdX --exclude='.config.json'",
"clean:modules": "git clean -fdX packages support",
"fix": "run-s -c fix:*",
"fix:build": "preconstruct fix",
"fix:config": "node support/scripts/generate-configs.js",
"fix:es": "pnpm lint:es -- --fix",
"fix:prettier": "pnpm run:prettier -- --write",
"fix:repo": "manypkg fix",
"if-clean": "node support/scripts/run-if-clean.js",
"if-config": "node support/scripts/run-if-config.js",
"if-not-ci": "node support/scripts/run-if-not-ci.js",
"if-publishable": "node support/scripts/run-if-publishable.js",
"preinstall": "pnpm symlink:root && pnpm check:pnpm",
"postinstall": "run-s build:dev",
"is-logged-in": "npm whoami",
"lint": "run-s lint:*",
"lint:build": "preconstruct validate",
"lint:es": "cross-env FULL_ESLINT_CHECK=true eslint -f codeframe --ext=.tsx,.ts,.js .",
"lint:md": "eslint -f codeframe --ignore-pattern='*.js' --ignore-pattern='*.ts' --ignore-pattern='*.tsx' .",
"lint:prettier": "pnpm run:prettier -- --check",
"lint:repo": "manypkg check",
"refresh": "pnpm clean:all; pnpm symlink:root; pnpm install;",
"prerelease": "pnpm if-not-ci run-s checks:release",
"release": "pnpm if-publishable run-s release",
"release:latest": "pnpm publish -r",
"reset": "pnpm clean:all; rm pnpm-lock.yaml; pnpm symlink:root; pnpm install;",
"run:prettier": "prettier --ignore-path .eslintignore \"**/*.{js,jsx,ts,tsx,md,mdx,json,html,css,yml,yaml,graphql}\"",
"size": "size-limit",
"storybook": "manypkg run support/storybook storybook",
"symlink:root": "node support/scripts/symlink-root.js",
"test": "jest --verbose",
"test:build": "cross-env TEST_BUILD=true jest --verbose --coverage=false",
"test:watch": "jest --watch --verbose=false --coverage=false",
"ts": "ts-node -P support/tsconfig.base.json -O '{\"module\":\"commonjs\"}' --transpile-only",
"typecheck": "tsc -b ./tsconfig.references.json",
"update:repo": "pnpm update --latest --recursive -i",
"update:workspace": "pnpm up -r --workspace \"@remirror/*\"",
"watch": "preconstruct watch # not recommended"
},
"browserslist": [
"since 2017"
],
"dependencies": {
"@babel/core": "^7.11.6",
"@babel/parser": "^7.11.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
"@babel/plugin-proposal-numeric-separator": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@babel/plugin-proposal-private-methods": "^7.10.4",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/plugin-transform-template-literals": "^7.10.5",
"@babel/plugin-transform-typescript": "^7.11.0",
"@babel/preset-env": "^7.11.5",
"@babel/runtime": "^7.11.0",
"@changesets/cli": "^2.10.2",
"@jest/types": "^26.3.0",
"@manypkg/cli": "^0.16.0",
"@manypkg/get-packages": "^1.1.1",
"@preconstruct/cli": "^1.1.27",
"@size-limit/preset-big-lib": "^4.6.0",
"@testing-library/jest-dom": "^5.11.4",
"@types/eslint": "^7.2.2",
"@types/jest": "^26.0.13",
"@types/jest-axe": "^3.5.0",
"@types/node": "^14.6.4",
"@types/testing-library__jest-dom": "^5.9.2",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"babel-jest": "^26.3.0",
"babel-plugin-annotate-pure-calls": "^0.4.0",
"babel-plugin-dev-expression": "^0.2.2",
"babel-plugin-macros": "^2.8.0",
"cpy-cli": "^3.1.1",
"cross-env": "^7.0.2",
"eslint": "^7.8.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-graphql": "^4.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.0.0",
"eslint-plugin-jest-formatting": "^2.0.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-markdown": "^2.0.0-rc.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-simple-import-sort": "^5.0.3",
"eslint-plugin-sonarjs": "^0.5.0",
"eslint-plugin-unicorn": "^21.0.0",
"husky": "^4.3.0",
"jest": "^26.4.2",
"jest-circus": "^26.4.2",
"jest-extended": "^0.11.5",
"jest-watch-typeahead": "^0.6.1",
"lint-staged": "^10.3.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.1",
"prettier-plugin-packagejson": "^2.2.5",
"rimraf": "^3.0.2",
"size-limit": "^4.6.0",
"snapshot-diff": "^0.8.1",
"ts-node": "^9.0.0",
"typescript": "^4.0.2",
"typescript-snapshots-plugin": "^1.7.0"
},
"engines": {
"node": ">=14",
"pnpm": "^5.5.0"
},
"manypkg": {
"defaultBranch": "HEAD"
},
"preconstruct": {
"packages": [
"packages/*",
"packages/@*/*"
]
}
}