-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 1.47 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
{
"name": "ageyecare",
"version": "1.0.0",
"description": "AG Eyecare Theme",
"homepage": "https://ageyecare.com",
"repository": {
"type": "git",
"url": "https://github.com/Marmt-Group/ag-eyecare.git"
},
"devDependencies": {
"autoprefixer": "^9.6.0",
"chokidar-cli": "^1.2.1",
"node-sass": "^4.12.0",
"npm-run-all": "^4.1.5",
"postcss-cli": "^6.0.1",
"postcss-focus-within": "^3.0.0"
},
"scripts": {
"build:style": "node-sass style.scss style.css --output-style compact && postcss -r style.css",
"build:designerFrames": "node-sass styles/pages/designer-frames.scss styles/pages/designer-frames.css --output-style compressed && postcss -r styles/pages/designer-frames.css",
"build:blog": "node-sass styles/pages/blog.scss styles/pages/blog.css --output-style compressed && postcss -r styles/pages/blog.css",
"build:services": "node-sass styles/pages/services.scss styles/pages/services.css --output-style compressed && postcss -r styles/pages/services.css",
"build:shop": "node-sass styles/pages/shop.scss styles/pages/shop.css --output-style compressed && postcss -r styles/pages/shop.css",
"build:contact": "node-sass styles/pages/contact.scss styles/pages/contact.css --output-style compressed && postcss -r styles/pages/contact.css",
"build": "run-p \"build:*\"",
"watch": "chokidar \"**/*.scss\" -c \"npm run build\" --initial"
}
}