-
Notifications
You must be signed in to change notification settings - Fork 161
/
package.json
109 lines (109 loc) · 4.51 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "bootstrap-italia",
"version": "2.12.1",
"keywords": [
"css",
"sass",
"mobile-first",
"responsive",
"front-end",
"framework",
"web"
],
"module": "dist/bootstrap-italia.esm.js",
"types": "./types/index.d.ts",
"sideEffects": [
"*.css",
"*.scss",
"dist/bootstrap-italia.esm.js",
"dist/plugins/init.js"
],
"description": "Bootstrap Italia è un tema Bootstrap 5 per la creazione di applicazioni web nel pieno rispetto delle linee guida di design per i siti internet e i servizi digitali della PA",
"homepage": "https://italia.github.io/bootstrap-italia/",
"style": "dist/css/bootstrap-italia.min.css",
"main": "dist/js/bootstrap-italia.bundle.min.js",
"scripts": {
"start": "concurrently \"npm run dev-code\" \"npm run dev-docs\" \"npm run start-bs\"",
"build": "rollup -c",
"start-bs": "browser-sync _site/ --port 4000 --watch --no-inject-changes",
"dev-code": "rollup -c --watch",
"dev-docs": "bundle exec jekyll build --watch --incremental --drafts --config _config.yml --force_polling",
"documentation-build": "bundle exec jekyll build",
"documentation-serve": "bundle exec jekyll serve",
"documentation-deploy-to-gh-pages": "JEKYLL_ENV=production bundle exec jekyll build --config _config.yml,_config_production.yml && ./compile-docs.sh && gh-pages -d _site -m 'chore: update documentation'",
"lint-js": "eslint ./src/js ./docs/assets/src/js/",
"lint-scss": "stylelint ./src/scss/ ./docs/assets/src/scss/",
"fix-js": "eslint ./src/js ./docs/assets/src/js/ --fix",
"fix-scss": "stylelint ./src/scss/ ./docs/assets/src/scss/ --fix",
"format-code": "npx prettier --write . && eslint ./src/js ./docs/assets/src/js/ --fix --cache && stylelint ./src/scss/ ./docs/assets/src/scss/ --fix --cache",
"release": "node scripts/release",
"version": "node scripts/config-sync && git add _config.yml && git add src/js/version.js && git add src/scss/base/_version.scss && conventional-changelog -p angular -i CHANGELOG.md -s && node scripts/wait-confirm && git add CHANGELOG.md",
"postversion": "echo \"You can now publish your tag with 'git push --follow-tags'\"",
"test-htmlproofer": "JEKYLL_ENV=development bundle exec jekyll build --config _config.yml && bundle exec htmlproofer ./_site --assume-extension --check-html --allow-hash-href --disable-external --url-ignore /1.x/",
"test-a11y": "npx pa11y-ci --sitemap http://localhost:4000/sitemap.xml --sitemap-find ^/ --sitemap-replace 'http://localhost:4000/'",
"test-a11y-one": "npx pa11y-ci"
},
"repository": "https://github.com/italia/bootstrap-italia",
"author": "Presidenza del Consiglio dei Ministri",
"license": "BSD-3-Clause",
"files": [
"dist/",
"src/",
"types/"
],
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/plugin-proposal-object-rest-spread": "^7.16.5",
"@babel/preset-env": "^7.17.10",
"@babel/preset-react": "^7.16.7",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.15.0",
"@octokit/rest": "^18.12.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-legacy": "^3.0.2",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"browser-sync": "^3.0.2",
"browserslist-config-design-italia": "^1.1.0",
"concurrently": "^7.0.0",
"conventional-changelog": "^3.1.24",
"conventional-changelog-cli": "^2.2.2",
"cross-spawn": "^7.0.6",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"fancy-log": "^1.3.3",
"gh-pages": "^5.0.0",
"globals": "^15.12.0",
"pa11y": "^8.0.0",
"pa11y-ci": "^3.1.0",
"prettier": "^3.3.3",
"replace-in-file": "^6.3.2",
"rollup": "^4.26.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-inject-process-env": "^1.3.1",
"rollup-plugin-scss": "^3.0.0",
"rollup-plugin-svg-sprite-deterministic": "^2.0.0",
"sass": "^1.81.0",
"semver": "^7.6.3",
"stylelint": "^16.10.0",
"stylelint-config-recommended-scss": "^14.1.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-prettier": "^5.0.2",
"stylelint-scss": "^6.10.0"
},
"dependencies": {
"@popperjs/core": "^2.11.6",
"@splidejs/splide": "^3.6.12",
"@types/bootstrap": "^5.2.6",
"accessible-autocomplete": "^3.0.1",
"animejs": "^3.2.1",
"design-tokens-italia": "^1.1.1",
"just-validate": "^3.10.0",
"minimasonry": "^1.3.2",
"progressbar.js": "^1.1.0",
"uuid": "^8.3.2",
"video.js": "^8.0.4"
}
}