-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
63 lines (63 loc) · 1.5 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": "lerna exec 'rm -rf ./dist ./tsconfig.tsbuildinfo'",
"postclean": "lerna clean -y",
"build": "tsc -b tsconfig.dev.json",
"build:watch": "yarn build --watch",
"test": "jest",
"lint": "eslint packages plugins --ext .ts --cache",
"release": "auto shipit -vv"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"author": "Adam Dierkens <[email protected]>",
"license": "MIT",
"workspaces": [
"packages/*",
"plugins/*",
"examples/*"
],
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write"
],
"*.{ts,tsx}": [
"prettier --parser typescript --write",
"yarn lint"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@design-systems/eslint-config": "4.15.1",
"@types/jest": "28.1.3",
"@typescript-eslint/parser": "5.31.0",
"auto": "10.27.1",
"eslint-plugin-no-explicit-type-exports": "0.12.1",
"husky": "4.2.3",
"jest": "28.1.3",
"jest-junit": "14.0.0",
"lerna": "^3.20.2",
"lint-staged": "13.0.3",
"prettier": "2.0.2",
"ts-jest": "28.0.7",
"typescript": "4.7.4"
},
"prettier": {
"singleQuote": true
},
"dependencies": {
"@types/got": "9.6.9"
}
}