-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.43 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.43 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
{
"name": "react-token-search",
"version": "0.2.0",
"description": "Search input component built in React",
"main": "dist/index.js",
"dependencies": {
"npm-check-updates": "^11.8.3"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.8",
"@babel/preset-react": "^7.14.5",
"babel-loader": "^8.2.2",
"gh-pages": "^3.2.3",
"html-webpack-plugin": "^5.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"webpack": "^5.46.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"scripts": {
"dev": "webpack-dev-server --mode development",
"transpile": "babel src -d dist --copy-files",
"prepublishOnly": "npm run transpile",
"build": "webpack --mode production",
"deploy": "gh-pages -d examples/dist",
"publish-demo": "npm run build && npm run deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pughpugh/react-token-search.git"
},
"browserify-global-shim": {
"react": "React",
"react-dom": "ReactDOM"
},
"keywords": [
"React",
"Search",
"Input"
],
"author": "Hugh Gallagher <hugh@hcgallagher.co.uk>",
"license": "ISC",
"bugs": {
"url": "https://github.com/pughpugh/react-token-search/issues"
},
"homepage": "https://github.com/pughpugh/react-token-search#readme"
}