-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.1 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
{
"name": "Weather",
"version": "1.0.2",
"main": "index.js",
"repository": "[email protected]:CuteShaun/WeatherApp.git",
"homepage": "https://github.com/CuteShaun",
"author": "Andrey Tsapko [email protected]",
"license": "MIT",
"scripts": {
"start": "parcel -p 3000 src/index.html",
"prebuild-dev": "shx rm -rf dist/",
"build-dev": "parcel build ./src/index.html --no-minify --public-url ./",
"build": "parcel src/index.html --out-dir production/ --public-url ./",
"prebuild": "shx rm -rf dist/",
"deploy": "push-dir --dir=production/ --branch=gh-pages --cleanup"
},
"devDependencies": {
"autoprefixer": "^9.4.9",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-prettier": "^3.0.1",
"node-sass": "^4.11.0",
"parcel-bundler": "^1.11.0",
"sass": "^1.17.3",
"shx": "^0.3.2"
},
"dependencies": {
"eslint": "5.3.0",
"eslint-config-airbnb-base": "13.1.0",
"moment": "^2.24.0",
"normalize": "^0.3.1",
"normalize.css": "^8.0.1",
"postcss-selector-parser": "^6.0.2",
"scss": "^0.2.4"
}
}