forked from macrocephal/ui.macrocephal.cloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
21 lines (21 loc) · 868 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "macrocephal.cloud-ui",
"version": "1.0.0",
"repository": "https://github.com/macrocephal/macrocephal.cloud-ui.git",
"author": "SalathielGenese <[email protected]>",
"license": "MIT",
"scripts": {
"build": "yarn build:scss",
"deploy": "now && now alias",
"build:scss": "yarn run node-sass --source-map true --source-map-embed --output-style expanded --output css --recursive scss",
"dev:scss": "yarn run chokidar 'scss/**/*.scss' --command \"yarn build:scss\"",
"dev:server": "yarn run live-server --cors --no-css-inject --ignore=node_modules,scss",
"dev": "yarn run concurrently --restart-after 3000 --restart-tries 600 \"yarn run dev:scss\" \"yarn dev:server\""
},
"devDependencies": {
"chokidar-cli": "^1.2.1",
"concurrently": "^4.1.0",
"live-server": "^1.2.1",
"node-sass": "^4.11.0"
}
}