This repository has been archived by the owner on Sep 17, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.83 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
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
{
"version": "0.2.0",
"name": "@committed/auth-components",
"description": "Committed Auth Components",
"author": "Committed",
"license": "MIT",
"private": false,
"repository": "git://github.com/commitd/auth-components.git",
"main": "dist/index.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",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"format": "prettier --write '**/{src,test,stories}/**/{*.js,*.ts,*.tsx,*.json,*.md,*.mdx}' example/index.tsx",
"deploy-storybook": "storybook-to-ghpages",
"generate": "plop --plopfile ./generators/plopfile.js"
},
"peerDependencies": {
"@committed/components": "^4.0.0",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"react": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged --pattern '**/*.*(ts|tsx|json|md)'; tsdx lint",
"pre-push": "yarn test && yarn build"
}
},
"prettier": {
"semi": false,
"singleQuote": true
},
"module": "dist/template.esm.js",
"size-limit": [
{
"path": "dist/template.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/template.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@babel/core": "^7.12.3",
"@committed/components": "^4.0.0",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@size-limit/preset-small-lib": "^4.6.2",
"@storybook/addon-essentials": "^6.0.27",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-links": "^6.0.27",
"@storybook/addons": "^6.0.27",
"@storybook/react": "^6.0.27",
"@storybook/storybook-deployer": "^2.8.7",
"@testing-library/jest-dom": "^5.11.5",
"@testing-library/react": "^11.1.0",
"@testing-library/react-hooks": "^3.4.2",
"@testing-library/user-event": "^12.1.10",
"@types/react": "^16.9.53",
"@types/react-dom": "^16.9.8",
"babel-loader": "^8.1.0",
"eslint-config-prettier": "^6.14.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-security": "^1.4.0",
"husky": "^4.3.0",
"plop": "^2.7.4",
"prettier": "^2.1.2",
"pretty-quick": "^3.1.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-is": "^17.0.1",
"shx": "^0.3.2",
"size-limit": "^4.6.2",
"tsdx": "^0.14.1",
"tslib": "^2.0.3",
"typescript": "^4.0.3"
},
"dependencies": {}
}