-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
88 lines (88 loc) · 2.26 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
{
"version": "1.3.3",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"repository": "https://github.com/authorizerdev/authorizer-react",
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"peerDependencies": {
"react": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "@authorizerdev/authorizer-react",
"author": "Lakhan Samani",
"module": "dist/authorizer-react.esm.js",
"size-limit": [
{
"path": "dist/authorizer-react.cjs.production.min.js",
"limit": "200 KB"
},
{
"path": "dist/authorizer-react.esm.js",
"limit": "200 KB"
}
],
"devDependencies": {
"@babel/core": "^7.23.2",
"@size-limit/preset-small-lib": "^8.1.0",
"@storybook/addon-essentials": "^8.2.7",
"@storybook/addon-interactions": "^8.2.7",
"@storybook/addon-links": "^8.2.7",
"@storybook/addon-onboarding": "^8.2.7",
"@storybook/addon-styling-webpack": "^1.0.0",
"@storybook/addon-webpack5-compiler-swc": "^1.0.5",
"@storybook/blocks": "^8.2.7",
"@storybook/react": "^8.2.7",
"@storybook/react-webpack5": "^8.2.7",
"@storybook/test": "^8.2.7",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"@types/validator": "^13.11.7",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"babel-loader": "^9.1.0",
"husky": "^8.0.2",
"postcss": "^8.4.19",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"rollup-plugin-postcss": "^4.0.2",
"size-limit": "^8.1.0",
"storybook": "^8.2.7",
"tsdx": "^0.14.1",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
},
"dependencies": {
"@authorizerdev/authorizer-js": "^2.0.3",
"@storybook/preset-scss": "^1.0.3",
"validator": "^13.11.0"
}
}