-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.16 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
{
"name": "@eidellev/react-tag-input",
"version": "1.0.2",
"description": "React tag input component",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "node build && tsc",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"lint": "eslint . --ext tsx,ts",
"test": "jest --coverage",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eidellev/react-tag-input.git"
},
"keywords": [
"react",
"component",
"tag input",
"colors",
"suggestions"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/eidellev/react-tag-input/issues"
},
"homepage": "https://github.com/eidellev/react-tag-input#readme",
"devDependencies": {
"@babel/core": "^7.15.8",
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@commitlint/prompt-cli": "^13.2.1",
"@deanc/esbuild-plugin-postcss": "^1.0.2",
"@storybook/addon-actions": "^6.3.12",
"@storybook/addon-essentials": "^6.3.12",
"@storybook/addon-links": "^6.3.12",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/react": "^6.3.12",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"babel-loader": "^8.2.3",
"esbuild": "^0.13.9",
"esbuild-node-externals": "^1.3.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^25.2.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"husky": "^7.0.4",
"jest": "^27.3.1",
"lint-staged": "^11.2.4",
"postcss": "^8.3.11",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.4.1",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
},
"dependencies": {
"@types/color-hash": "^1.0.1",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"color-hash": "^2.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}