-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.24 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.24 KB
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": "weathery",
"version": "1.0.0",
"description": "Weather app personal project",
"default": "index.html",
"scripts": {
"watch:sass": "node-sass sass/main.scss css/style.css -w",
"devserver": "parcel index.html",
"start": "npm-run-all --parallel devserver watch:sass",
"compile:sass": "node-sass sass/main.scss css/style.comp.css",
"prefix:css": "postcss --use autoprefixer -b 'last 10 versions' css/style.comp.css -o css/style.prefix.css",
"compress:css": "node-sass css/style.prefix.css css/style.css --output-style compressed",
"build:css": "npm-run-all compile:sass prefix:css compress:css",
"build": "parcel build index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hptrk/Weathery.git"
},
"author": "Horánszki Patrik",
"license": "ISC",
"bugs": {
"url": "https://github.com/hptrk/Weathery/issues"
},
"homepage": "https://github.com/hptrk/Weathery#readme",
"dependencies": {
"autoprefixer": "^10.4.13",
"chart.js": "^4.2.1",
"concat": "^1.0.3",
"core-js": "^3.28.0",
"leaflet": "^1.9.3",
"node-sass": "^8.0.0",
"npm-run-all": "^4.1.5",
"parcel": "^2.8.3",
"postcss-cli": "^10.1.0",
"regenerator-runtime": "^0.13.11"
}
}