This repository was archived by the owner on Jun 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 2.98 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 2.98 KB
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
{
"name": "@committed/layout",
"version": "4.2.0",
"description": "Committed layout library",
"author": "Committed",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/layout.esm.js",
"typings": "dist/index.d.ts",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"files": [
"dist"
],
"engines": {
"node": ">=10"
},
"scripts": {
"clean": "shx rm -rf dist",
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint src",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook --no-dll",
"format": "prettier --write '**/{src,test,stories}/**/{*.js,*.ts,*.tsx,*.json,*.md,*.mdx}' example/index.tsx",
"deploy-storybook": "storybook-to-ghpages"
},
"peerDependencies": {
"@committed/components": ">=4.0.0",
"@material-ui/core": "^4.9.10",
"@material-ui/icons": "^4.9.1",
"react": ">=16",
"react-dom": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged --pattern '**/*.*(ts|tsx|json|md)'; yarn lint",
"pre-push": "yarn test && yarn build"
}
},
"prettier": {
"semi": false,
"singleQuote": true
},
"jest": {
"testEnvironment": "jsdom",
"collectCoverage": true,
"testResultsProcessor": "jest-sonar-reporter",
"coveragePathIgnorePatterns": [
"setupTests.tsx",
".*/index.ts",
".*.test.ts",
".*.stories.tsx"
]
},
"size-limit": [
{
"path": "dist/layout.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/layout.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@babel/core": "^7.9.6",
"@committed/components": "^4.2.0",
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"@size-limit/preset-small-lib": "^4.9.1",
"@storybook/addon-essentials": "^6.1.11",
"@storybook/addons": "^6.1.11",
"@storybook/react": "^6.1.11",
"@storybook/storybook-deployer": "^2.8.7",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"@testing-library/react-hooks": "^3.7.0",
"@testing-library/user-event": "^12.5.0",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.7",
"babel-loader": "^8.1.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.2.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-security": "^1.4.0",
"husky": "^4.2.5",
"jest-sonar-reporter": "^2.0.0",
"lorem-ipsum": "^2.0.3",
"prettier": "^2.0.5",
"pretty-quick": "^3.1.0",
"react": "^16.13.1",
"react-docgen-typescript-loader": "^3.7.2",
"react-dom": "^16.13.1",
"react-is": "^16.13.1",
"shx": "^0.3.3",
"size-limit": "^4.9.1",
"ts-loader": "^7.0.2",
"tsdx": "^0.14.1",
"tslib": "^2.0.3",
"typescript": "^4.0.5"
}
}