-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.75 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
{
"name": "fancy-weather",
"version": "1.0.0",
"description": "WebPack: HTML, CSS, SCSS, JS, Img, Fonts",
"main": "",
"browserslist": [
"> 0.25%, not dead"
],
"author": "Anton Saladounikau",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/rolling-scopes-school/lighthousekeeperyn-RS2019Q3.git"
},
"scripts": {
"watch": "webpack-dev-server --history-api-fallback --inline --progress --open",
"build": "npm run clear -s && webpack --progress",
"build:deploy": "npm run clear -s && webpack --progress && surge dist fancy-weather-lhk.surge.sh",
"lint": "eslint ./*.js",
"lint:fix": "eslint --fix ./*.js",
"clear": "del-cli dist",
"deploy": "surge dist fancy-weather-lhk.surge.sh",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/preset-env": "^7.6.0",
"autoprefixer": "^9.6.1",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^5.0.5",
"css-loader": "^3.2.0",
"css-mqpacker": "^7.0.0",
"cssnano": "^4.1.10",
"del-cli": "^3.0.0",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"file-loader": "^4.2.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"image-webpack-loader": "^6.0.0",
"jest": "^24.9.0",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.13.0",
"postcss-loader": "^3.0.0",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.2"
},
"dependencies": {
"@babel/polyfill": "^7.7.0"
}
}