forked from react-tags/react-tags
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.71 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.71 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
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
{
"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 --inline --color",
"format": "prettier --write src/**/*.js __tests__/**/*.js",
"build": "webpack --config webpack-production.config.js --progress --color && babel src --out-dir dist-modules --copy-files",
"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": {
"classnames": "~2.3.1",
"lodash": "~4.17.12",
"prop-types": "^15.7.2"
},
"devDependencies": {
"@testing-library/react": "^12.0.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-jest": "^23.6.0",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"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": "^22.4.4",
"jsdom": "^11.12.0",
"node-sass": "^6.0.0",
"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-loader": "^7.3.1",
"semantic-release": "^17.2.3",
"sinon": "^11.1.1",
"style-loader": "^2.0.0",
"webpack": "^5.47.1",
"webpack-bundle-analyzer": "^3.9.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}