-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 896 Bytes
/
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
{
"name": "weather-app",
"version": "1.0.0",
"main": "index.html",
"repository": "[email protected]:o-msh/weather-app.git",
"author": "Oleh <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"start": "parcel ./src/index.html",
"prebuild-dev": "shx rm -rf dist/",
"build-dev": "parcel build ./src/index.html --no-minify --public-url ./",
"prebuild": "shx rm -rf dist/",
"build": "parcel build ./src/index.html --public-url ./ --no-cache --no-source-maps",
"publish": "push-dir --dir=dist --branch=gh-pages --cleanup"
},
"devDependencies": {
"babel-polyfill": "^6.26.0",
"parcel": "^1.12.2",
"push-dir": "^0.4.1",
"sass": "^1.17.4",
"shx": "^0.3.2"
},
"dependencies": {
"core-js": "3",
"font-awesome.css": "^4.7.2"
}
}