-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.16 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
{
"name": "autocomplete",
"version": "1.0.0",
"description": "A autocomplete component for inputs",
"main": "index.js",
"scripts": {
"dev": "webpack -w --mode development --module-bind 'js=babel-loader' --module-bind 'css=style-loader!css-loader' --output-path='./public/dist'",
"build": "webpack --mode production --module-bind 'js=babel-loader' --module-bind 'css=style-loader!css-loader'",
"start": "json-server -w ./api/words.json --static ./public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/luan0ap/autocomplete.git"
},
"keywords": [
"autocomplete",
"vanilla",
"javascript",
"dailycode",
"problem",
"test",
"twitter"
],
"author": "luan0ap",
"license": "ISC",
"bugs": {
"url": "https://github.com/luan0ap/autocomplete/issues"
},
"homepage": "https://github.com/luan0ap/autocomplete#readme",
"dependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"json-server": "^0.14.0",
"webpack": "^4.16.2",
"webpack-cli": "^3.1.0"
},
"devDependencies": {
"css-loader": "^1.0.0",
"style-loader": "^0.21.0"
}
}