-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
102 lines (102 loc) · 2.97 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
101
102
{
"name": "block-code",
"description": "A fully customizable, one-time password input component for the web built with React",
"version": "0.0.0-development",
"files": [
"dist"
],
"main": "dist/block-code.umd.js",
"module": "dist/block-code.es.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/block-code.es.js",
"require": "./dist/block-code.umd.js"
},
"./style.css": "./dist/style.css"
},
"keywords": [
"otp",
"code",
"input",
"verification",
"passcode",
"2fa"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"test": "vitest",
"coverage": "vitest --coverage",
"coverage:watch": "vitest watch --coverage",
"preview": "vite preview",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook -o docs",
"prepare": "is-ci || husky install",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@rollup/plugin-typescript": "^8.3.1",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@storybook/addon-actions": "^6.4.19",
"@storybook/addon-console": "^1.2.3",
"@storybook/addon-essentials": "^6.4.19",
"@storybook/addon-interactions": "^6.4.19",
"@storybook/addon-links": "^6.4.19",
"@storybook/addon-storysource": "^6.4.19",
"@storybook/builder-webpack5": "^6.4.19",
"@storybook/manager-webpack5": "^6.4.19",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^6.4.19",
"@storybook/testing-library": "^0.0.9",
"@testing-library/react": "^12.1.3",
"@testing-library/react-hooks": "^7.0.2",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"@vitejs/plugin-react": "^1.0.7",
"babel-loader": "^8.2.3",
"css-loader": "^6.6.0",
"eslint": "^8.10.0",
"eslint-plugin-react": "^7.29.2",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-storybook": "^0.5.7",
"husky": "^7.0.4",
"is-ci": "^3.0.1",
"jsdom": "^19.0.0",
"lint-staged": ">=10",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"sass": "^1.49.9",
"sass-loader": "^12.6.0",
"semantic-release": "^19.0.2",
"style-loader": "^3.3.1",
"typescript": "^4.5.5",
"vite": "^2.8.0",
"vite-tsconfig-paths": "^3.4.1",
"vitest": "^0.5.7"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"eslint --cache --fix",
"prettier --write"
]
},
"homepage": "https://github.com/eui-official/block-code",
"bugs": "https://github.com/eui-official/block-code/issues",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/eui-official/block-code.git"
}
}