forked from react-tags/react-tags
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.79 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
{
"name": "react-tag-input",
"version": "0.0.0-semantically-released",
"description": "React tags is a fantastically simple tagging component for your React projects",
"main": "dist-modules/components/ReactTags.js",
"files": [
"dist-modules",
"dist"
],
"funding": {
"type": "individual",
"url": "https://www.buymeacoffee.com/aakansha"
},
"sideEffects": false,
"scripts": {
"test": "jest --notify --coverage",
"test:watch": "jest --watch --notify --coverage",
"start": "webpack serve --config webpack-dev-server.config.js --progress ",
"format": "prettier --write src/**/*.js __tests__/**/*.js",
"build": "rm -rf dist-modules && webpack --config webpack-production.config.js --progress --color && babel src --out-dir dist-modules --copy-files",
"build:example": "webpack --config webpack-dev-server.config.js",
"precommit": "./set_up_hooks.sh",
"semantic-release": "semantic-release",
"commit": "git-cz"
},
"keywords": [
"react",
"drag-drop",
"tags",
"tag input",
"react-component",
"autosuggest",
"editable"
],
"author": "Prakhar Srivastav",
"license": "MIT",
"repository": "https://github.com/react-tags/react-tags",
"peerDependencies": {
"react": "^17.0.2 || ^18.2.0",
"react-dnd": "^14.0.2",
"react-dnd-html5-backend": "^14.0.0",
"react-dom": "17.0.2 || ^18.2.0"
},
"dependencies": {
"@svgr/webpack": "^8.1.0",
"classnames": "~2.3.1",
"lodash": "~4.17.12",
"prop-types": "^15.7.2",
"uuid": "^10.0.0"
},
"devDependencies": {
"@babel/cli": "7.23.0",
"@babel/core": "7.23.2",
"@babel/preset-env": "7.23.2",
"@babel/preset-react": "7.22.15",
"@testing-library/react": "12.0.0",
"@wojtekmaj/enzyme-adapter-react-17": "0.6.1",
"babel-eslint": "10.1.0",
"babel-jest": "29.7.0",
"babel-loader": "9.1.3",
"chai": "4.3.4",
"commitizen": "4.2.4",
"css-loader": "5.2.6",
"cz-conventional-changelog": "3.3.0",
"enzyme": "3.11.0",
"enzyme-to-json": "3.6.2",
"eslint": "7.3.1",
"eslint-plugin-jest": "24.3.6",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.23.2",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"node-notifier": "^10.0.1",
"opn": "6.0.0",
"prettier": "2.3.0",
"raf": "3.4.1",
"react": "17.0.2",
"react-dnd": "14.0.2",
"react-dnd-html5-backend": "14.0.0",
"react-dom": "17.0.2",
"sass": "1.69.4",
"sass-loader": "13.3.2",
"semantic-release": "17.2.3",
"sinon": "11.1.1",
"style-loader": "2.0.0",
"webpack": "5.76.0",
"webpack-bundle-analyzer": "3.9.0",
"webpack-cli": "4.10.0",
"webpack-dev-server": "4.9.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}