-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
49 lines (49 loc) · 1.83 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
{
"name": "sass-starter",
"version": "0.0.1",
"description": "Basic Sass outline with SMACSS architecture.",
"main": "index.js",
"scripts": {
"html": "cpx \"*.html\" dist/",
"fonts": "cpx fonts/**/* dist/fonts",
"js": "cpx js/**/* dist/js",
"images": "cpx images/**/* dist/images/",
"sass": "sass sass/style.scss dist/css/style.css",
"watch-html": "cpx \"*.html\" dist/ --watch",
"watch-fonts": "cpx fonts/**/* dist/fonts --watch",
"watch-js": "cpx js/**/* dist/js/ --watch",
"watch-images": "cpx images/**/* dist/images/ --watch",
"watch-sass": "sass -w sass/style.scss dist/css/style.css",
"clean": "rimraf dist/",
"clean-dist": "rimraf dist/**/* !dist/images/ ! dist/images/**/*",
"imagemin": "imagemin images/**/* --out-dir=dist/images/",
"start": "concurrently \"npm:watch-html\" \"npm:watch-js\" \"npm:watch-images\" \"npm:watch-fonts\" \"npm:watch-sass\" \"npm:serve\"",
"build": "npm install && npm run clean-dist && npm run sass && npm run imagemin && npm run fonts && npm run js && npm run html",
"serve": "browser-sync start --server \"dist\" --files \"dist\" --port 8081",
"deploy": "npm run build && gh-pages -d dist",
"prettier": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/sshikhrakar/Sass-Starter.git"
},
"author": "Shirish Shikhrakar",
"license": "MIT",
"bugs": {
"url": "https://github.com/sshikhrakar/Sass-Starter/issues"
},
"homepage": "https://github.com/sshikhrakar/Sass-Starter#readme",
"devDependencies": {
"concurrently": "^6.5.1",
"connect-history-api-fallback": "^1.6.0",
"cpx2": "^4.2.0",
"imagemin-cli": "^7.0.0",
"prettier": "^2.7.1",
"sass": "^1.55.0"
},
"dependencies": {
"browser-sync": "^2.27.10",
"gh-pages": "^3.2.3",
"rimraf": "^3.0.2"
}
}