-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 839 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 839 Bytes
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
{
"name": "sasscompiler",
"version": "1.0.1",
"description": "compile scss to as minimized css",
"main": "home.html",
"license": "MIT",
"scripts": {
"scss": "node-sass --output-style compressed src/main/resources/static/styles -o src/main/resources/static/styles",
"watch": "node-sass --watch --output-style compressed src/main/resources/static/styles -o src/main/resources/static/styles && node-sass --watch --output-style compressed src/main/resources/static/styles -o target/classes/static/styles/"
},
"author": "Patrick Binkert",
"repository": {
"private": true
},
"dependencies": {
"bootstrap": "5.1.0",
"copyfiles": "2.4.1",
"jquery": "3.6.0",
"@popperjs/core": "2.9.3"
},
"devDependencies": {
"node-sass": "7.0.1",
"sass-loader": "12.6.0",
"webpack": "5.69.1"
}
}