-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.15 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
{
"name": "weatherbuzz",
"version": "0.0.1",
"description": "A simple app buzzing about the weather!",
"main": "index.js",
"scripts": {
"build": "webpack",
"serve": "browser-sync start --server --ss ./dist --https --files dist/*.css --no-notify",
"test": "karma start karma.config.js",
"watch": "webpack --watch"
},
"author": "Josef van Niekerk <[email protected]>",
"license": "UNLICENSED",
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.24.1",
"browser-sync": "^2.18.13",
"css-loader": "^0.28.4",
"extract-text-webpack-plugin": "^3.0.0",
"html-webpack-plugin": "^2.30.1",
"jasmine-core": "^2.7.0",
"karma": "^1.7.0",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.0.1",
"karma-jasmine": "^1.1.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "^0.0.31",
"karma-webpack": "^2.0.4",
"node-sass": "^4.5.3",
"normalize.css": "^7.0.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"url-loader": "^0.5.9",
"weather-icons": "^1.3.2",
"webpack": "^3.4.1"
}
}