-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.11 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
{
"name": "abbreviation-autocomplete-react",
"version": "1.1.0",
"description": "An autocomplete for lists of short strings.",
"main": "dist/abbreviation-autocomplete.js",
"scripts": {
"build": "webpack --config webpack.prod.js",
"transpile": "babel src -d dist --copy-files"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FireLemons/AbbreviationAutocompleteReact.git"
},
"keywords": [
"autocomplete",
"react",
"component",
"react-component"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/FireLemons/AbbreviationAutocompleteReact/issues"
},
"homepage": "https://github.com/FireLemons/AbbreviationAutocompleteReact#readme",
"dependencies": {
"react": "^17.0.1"
},
"devDependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@babel/preset-react": "^7.12.13",
"babel-loader": "^8.2.2",
"css-loader": "^5.1.3",
"style-loader": "^2.0.0",
"webpack": "^5.26.3",
"webpack-cli": "^4.5.0",
"webpack-merge": "^5.7.3"
}
}