-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
39 lines (39 loc) · 1.2 KB
/
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
31
32
33
34
35
36
37
38
39
{
"name": "bootstrap-italia-playground",
"version": "2.0.0",
"description": "The easiest way to start playing with Bootstrap Italia.",
"main": "index.js",
"scripts": {
"vercel": "del ./bootstrap-italia && recursive-copy -w node_modules/bootstrap-italia/ ./bootstrap-italia",
"build": "npm run vercel && sass --load-path=node_modules scss/main.scss:css/compiled/bootstrap-italia-custom.min.css --style=compressed",
"start": "npm run serve",
"serve": "concurrently --kill-others \"npm-watch\" \"browser-sync start --server --no-inject-changes --files 'css/**/*.css'\""
},
"author": "Presidenza del Consiglio dei Ministri",
"license": "BSD-3-Clause",
"dependencies": {
"bootstrap-italia": "^2.9.2"
},
"watch": {
"build": {
"patterns": [
"index.html",
"scss"
],
"extensions": "html,scss",
"quiet": true,
"legacyWatch": true,
"delay": 2500
}
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"browser-sync": "^3.0.2",
"concurrently": "^8.2.2",
"del-cli": "^5.0.0",
"npm-watch": "^0.11.0",
"recursive-copy-cli": "^1.0.20",
"sass": "1.54.9"
}
}