-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.89 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.89 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
{
"name": "react-tag-input-demo",
"version": "0.0.1",
"description": "Example integration of React Tags and React Hook Form",
"homepage": "https://sitek94.github.io/react-tag-input-demo/",
"keywords": [
"react",
"react-hook-form",
"react-tags",
"react-tag-input",
"tailwindcss"
],
"scripts": {
"preinstall": "patch-package",
"build": "react-scripts build",
"eject": "react-scripts eject",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"lint": "eslint --ext ts,tsx src/",
"lint:fix": "npm run lint -- --fix",
"start": "react-scripts start",
"test": "react-scripts test",
"test:coverage": "npm run test -- --coverage --watchAll=false"
},
"dependencies": {
"@heroicons/react": "^1.0.5",
"react": "^17.0.2",
"react-dnd": "^15.1.1",
"react-dnd-html5-backend": "^15.1.2",
"react-dom": "^17.0.2",
"react-hook-form": "^7.27.1",
"react-scripts": "^5.0.0",
"react-tag-input": "^6.8.0"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.2",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.1",
"@types/node": "^16.11.25",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@types/react-tag-input": "^6.1.3",
"autoprefixer": "^10.4.2",
"eslint-plugin-simple-import-sort": "^7.0.0",
"patch-package": "^6.4.7",
"postcss": "^8.4.6",
"prettier": "^2.5.1",
"prettier-plugin-tailwindcss": "^0.1.7",
"simple-git": "^2.48.0",
"sort-package-json": "^1.54.0",
"tailwindcss": "^3.0.23",
"typescript": "^4.4.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}