forked from intuit/proof
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.45 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
{
"name": "@proof-ui/monorepo",
"version": "0.0.0",
"private": true,
"description": "Integration testing for storybook",
"repository": "https://github.com/intuit/proof",
"main": "index.js",
"scripts": {
"clean": "rm -rf ./packages/*/dist/* && rm -rf ./plugins/*/dist/* && lerna clean -y",
"build": "lerna run build --stream",
"build:watch": "lerna run build:watch --parallel",
"test": "jest",
"lint": "xo",
"release": "auto shipit -w"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"author": "Adam Dierkens <Adam_Dierkens@intuit.com>",
"license": "MIT",
"workspaces": [
"packages/*",
"plugins/*",
"examples/*"
],
"lint-staged": {
"*.{js,json,css,md,ts,tsx,jsx}": [
"prettier --write",
"xo --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@types/jest": "24.0.15",
"auto": "7.2.1",
"eslint-config-xo": "0.26.0",
"eslint-config-xo-react": "0.20.0",
"eslint-plugin-react": "7.14.2",
"eslint-plugin-react-hooks": "1.6.1",
"husky": "3.0.1",
"jest": "24.8.0",
"jest-junit": "7.0.0",
"lerna": "^3.15.0",
"lint-staged": "9.2.0",
"ts-jest": "24.0.2",
"typescript": "3.5.3",
"xo": "0.24.0"
},
"prettier": {
"singleQuote": true
},
"xo": {
"space": true,
"extends": "xo-react",
"prettier": true
}
}