-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.76 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "weather-now",
"version": "1.0.0",
"description": "A web application to show the weather from any city from Brazil",
"main": "index.js",
"scripts": {
"build": "webpack --mode=production && cp src/index.html dist/",
"test": "echo \"Error: no test specified\" && exit 1",
"start:dev": "webpack-dev-server --open",
"start": "npm run build && http-server ./dist",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{js,scss,md}": [
"prettier-eslint --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lucasdsk/weather-now.git"
},
"keywords": [
"weather"
],
"author": "Lucas Gomes",
"license": "ISC",
"bugs": {
"url": "https://github.com/Lucasdsk/weather-now/issues"
},
"homepage": "https://github.com/Lucasdsk/weather-now#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-syntax-async-generators": "^6.13.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.12.0",
"husky": "^0.14.3",
"lint-staged": "^7.2.0",
"node-sass": "^4.9.0",
"prettier": "^1.13.5",
"prettier-eslint": "^8.8.2",
"prettier-eslint-cli": "^4.7.1",
"sass-loader": "^7.0.3",
"style-loader": "^0.21.0",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4"
},
"dependencies": {
"awesomplete": "^1.1.2",
"axios": "^0.18.0",
"babel-polyfill": "^6.26.0",
"chart.js": "^2.7.2",
"chartjs-plugin-datalabels": "^0.3.0",
"moment": "^2.22.2",
"qs": "^6.5.2"
}
}