-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
72 lines (72 loc) · 2.29 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
{
"name": "@storybook/native-root",
"version": "0.0.1",
"private": true,
"description": "The mono-repo for storybook native packages",
"repository": "https://github.com/storybookjs/native.git",
"license": "MIT",
"author": "Adil Malik <adil_malik@intuit.com>",
"contributors": [
"Raj Vasikarla <raj_vasikarla@intuit.com>",
"Adil Malik <adil_malik@intuit.com>",
"Vanya Sehgal <vanya_sehgal@intuit.com>",
"Jay Unnikrishn <jayakrishnan_unnikrishnan@intuit.com>",
"Thomas Baker <thomas_baker@intuit.com>",
"Lucas Shadler <lshadler13@gmail.com>"
],
"workspaces": [
"packages/*",
"examples/*"
],
"publishConfig": {
"registry": "https://registry.npmjs.com/",
"access": "public"
},
"scripts": {
"build": "lerna run build --stream",
"build:storybook": "bash ./scripts/buildExamples.sh",
"build:stories": "lerna run build:stories --stream",
"clean": "run-p clean:*",
"clean:node": "lerna clean -y",
"clean:dist": "lerna exec 'rm -rf ./dist && rm -rf ./tsconfig.tsbuildinfo'",
"lint": "eslint --ext .ts --ext .tsx .",
"prettier": "prettier './**/*.(ts|tsx|js|jsx)'",
"test": "echo Test",
"release": "auto shipit -vv",
"release:storybook": "export NODE_OPTIONS=\"--max_old_space_size=4096\" && yarn build:stories && storybook-to-ghpages --ci --packages examples"
},
"devDependencies": {
"@auto-it/all-contributors": "10.0.2",
"@auto-it/conventional-commits": "10.0.2",
"@auto-it/first-time-contributor": "10.0.2",
"@auto-it/released": "10.0.2",
"@storybook/storybook-deployer": "2.8.16",
"@typescript-eslint/eslint-plugin": "6.9.1",
"@typescript-eslint/parser": "6.9.1",
"auto": "10.0.2",
"eslint": "7.12.1",
"eslint-config-airbnb": "18.2.0",
"eslint-config-airbnb-typescript": "12.0.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.21.5",
"eslint-plugin-react-hooks": "4.2.0",
"husky": "4.3.0",
"lerna": "3.20.2",
"lint-staged": "^10.5.4",
"npm-run-all": "4.1.5",
"prettier": "^2.1.2",
"sort-package-json": "^1.42.1",
"typescript": "5.2.2"
},
"lint-staged": {
"*.{json,jsx,tsx,js,ts}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}