-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (33 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (33 loc) · 1.21 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
{
"name": "natours-csstutorialproject1",
"version": "1.0.0",
"description": "Dummy site for natours - css tutorial project",
"main": "index.js",
"scripts": {
"watch:sass": "sass scss/main.scss css/style.css -w",
"compile:sass": "sass scss/main.scss css/style.comp.css",
"concat:css": "concat -o css/style.concat.css css/iconfonts.css css/style.comp.css",
"prefix:css": "postcss --use autoprefixer -b 'last 10 versions' css/style.concat.css -o css/style.prefix.css",
"compress:css": "sass css/style.prefix.css css/style.css --style=compressed",
"build:css": "npm-run-all compile:sass concat:css prefix:css compress:css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AnshumanMahato/Natours-cssTutorialProject1.git"
},
"author": "Anshuman Mahato",
"license": "ISC",
"bugs": {
"url": "https://github.com/AnshumanMahato/Natours-cssTutorialProject1/issues"
},
"homepage": "https://github.com/AnshumanMahato/Natours-cssTutorialProject1#readme",
"devDependencies": {
"autoprefixer": "^10.2.6",
"concat": "^1.0.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.4",
"postcss-cli": "^8.3.1",
"sass": "^1.32.13"
},
"dependencies": {}
}