-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 914 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
{
"name": "fem-base-apparel",
"version": "1.0.0",
"description": "Responsive page design challenge: example landing page",
"main": "index.js",
"scripts": {
"build:scss": "node-sass --output-style compressed -o dist/styles src/styles",
"start": "browser-sync -s -f './index.html, dist/**/*, src/**/*'",
"watch:all": "parallelshell 'npm start' 'npm run watch:scss'",
"watch:scss": "onchange -i -v 'src/styles/**/*' -- npm run build:scss"
},
"author": "ann-dev",
"repository": {
"type": "git",
"url": "https://github.com/ann-dev/frontend-mentor-challenges.git"
},
"license": "ISC",
"devDependencies": {
"browser-sync": "^2.26.7",
"node-sass": "^4.14.1",
"onchange": "^6.1.0",
"parallelshell": "^3.0.1",
"prettier": "2.0.4",
"sass-rem": "^2.0.1"
},
"dependencies": {}
}