-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.26 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.26 KB
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
{
"name": "stylescape_npm",
"description": "Include Stylescape's source Sass and compiled JavaScript bundle via npm.",
"version": "0.0.1",
"private": true,
"repository": "https://github.com/stylescape/example-npm",
"license": "MIT",
"stackblitz": {
"startCommand": "npm start"
},
"scripts": {
"build": "npm run css",
"css-compile": "sass --style compressed --source-map --embed-sources --no-error-css --load-path=node_modules scss/:css/",
"css-lint": "stylelint scss/",
"css-prefix": "postcss --replace css/styles.css --use autoprefixer --map",
"css": "npm-run-all css-compile css-prefix",
"server": "sirv --dev --no-clear --port 3000",
"start": "npm-run-all --parallel watch server",
"watch": "nodemon -e html,scss -x \"npm run css\"",
"test": "npm-run-all css-lint css"
},
"dependencies": {
"stylescape": "^0.0.34"
},
"devDependencies": {
"autoprefixer": "^10.4.19",
"nodemon": "^3.1.4",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.39",
"postcss-cli": "^11.0.0",
"sass": "^1.77.6",
"sirv-cli": "^3.0.0",
"stylelint": "^16.6.1",
"stylelint-config-twbs-bootstrap": "^15.0.0"
}
}