-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·43 lines (43 loc) · 1.14 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
{
"name": "country-info",
"version": "1.0.0",
"description": "Country Information",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --mode development",
"build": "webpack",
"dev": "webpack --mode development",
"deploy": "gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Aman-Jojra/country-info.git"
},
"author": "Aman Jojra",
"license": "MIT",
"bugs": {
"url": "https://github.com/Aman-Jojra/country-info/issues"
},
"homepage": "https://github.com/Aman-Jojra/country-info#readme",
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@babel/preset-typescript": "^7.6.0",
"@types/superagent": "^4.1.3",
"babel-loader": "^8.0.6",
"css-loader": "^3.2.0",
"gh-pages": "^2.1.1",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.12.0",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.0",
"typescript": "^3.6.2",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.8",
"webpack-dev-server": "^3.8.0"
},
"dependencies": {
"superagent": "^5.1.0"
}
}