-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 999 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
28
29
30
{
"name": "pulse",
"version": "1.0.0",
"description": "Pulse meter shop",
"main": "index.html",
"scripts": {
"scss:prefix": "postcss --use autoprefixer -b 'last 10 versions' css/style.css -o css/style.css",
"scss:compress": "node-sass css/style.css css/style.css --output-style compressed",
"build": "npm-run-all scss:prefix scss:compress",
"scss:compile": "node-sass sass/style.scss css/style.css",
"scss:watch": "nodemon -e scss -x \"npm run scss:compile\"",
"dev": "npm-run-all --parallel server scss:watch",
"server": "browser-sync start --server -w index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mux-mux/pulse.git"
},
"author": "",
"license": "ISC",
"homepage": "https://github.com/mux-mux/pulse#readme",
"devDependencies": {
"autoprefixer": "^10.4.19",
"browser-sync": "^3.0.2",
"node-sass": "^9.0.0",
"nodemon": "^3.1.0",
"npm-run-all": "^4.1.5",
"postcss-cli": "^11.0.0"
}
}