-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
44 lines (44 loc) · 1.48 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": "@fluent-blocks/monorepo",
"repository": "[email protected]:OfficeDev/fluent-blocks.git",
"authors": [
"Will Shown <[email protected]>",
"Zhenya Savchenko <[email protected]>"
],
"license": "MIT",
"private": true,
"scripts": {
"prepare": "husky install",
"lint-ci": "eslint --max-warnings 0 packages/react/src/**/*.{ts,tsx} packages/react/.storybook/*.js",
"lint-staged": "lint-staged",
"test": "pnpm run --filter \"@fluent-blocks/*\" --if-present test",
"change": "pnpm exec changeset add",
"changeset:version": "pnpm exec changeset version && pnpm install --lockfile-only",
"changeset:publish": "pnpm exec changeset publish"
},
"engines": {
"node": ">=12.0.0 <17.0.0",
"pnpm": "^7"
},
"devDependencies": {
"@changesets/changelog-github": "latest",
"@changesets/cli": "latest",
"@trivago/prettier-plugin-sort-imports": "latest",
"@types/eslint": "latest",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"eslint": "latest",
"eslint-config-prettier": "latest",
"eslint-import-resolver-typescript": "latest",
"eslint-plugin-import": "latest",
"eslint-plugin-jest": "latest",
"eslint-plugin-lodash": "latest",
"eslint-plugin-react": "latest",
"eslint-plugin-react-hooks": "latest",
"eslint-plugin-security": "latest",
"husky": "latest",
"lint-staged": "latest",
"prettier": "latest",
"typescript": ">=4.4.0 <5.0.0"
}
}