-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.69 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.69 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "flexstrap-starter-template",
"version": "1.0.0",
"private": true,
"description": "",
"author": "@nclaudiuf",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nclaudiuf/bootstrap-sandbox-template.git"
},
"bugs": {
"url": "https://github.com/nclaudiuf/bootstrap-sandbox-template/issues"
},
"homepage": "https://github.com/nclaudiuf/bootstrap-sandbox-template#readme",
"scripts": {
"build:css": "npm run css",
"css-compile": "node-sass --include-path node_modules --output-style compressed --source-map true --source-map-contents true --precision 6 scss -o dist/",
"css-lint": "stylelint scss/",
"css-prefix": "postcss --replace scss/theme.scss --use autoprefixer --map",
"css-purge": "purgecss --keyframes --css scss/theme.scss --content index.html \"node_modules/bootstrap/js/dist/{modal}.js\" --output dist/",
"css": "npm-run-all css-compile css-prefix",
"start": "parcel index.html --open",
"build": "parcel build index.html",
"watch": "nodemon -e html,scss -x \"npm run css\"",
"test": "npm run css-lint && npm run css"
},
"dependencies": {
"@parcel/transformer-image": "2.0.0-rc.0",
"@parcel/transformer-sass": "2.0.0-rc.0",
"@popperjs/core": "2.10.1",
"bootstrap": "5.1.0",
"bootstrap-icons": "1.5.0",
"jquery": "3.6.0"
},
"devDependencies": {
"parcel": "latest",
"autoprefixer": "10.3.4",
"node-sass": "^5.0.0",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5",
"postcss": "8.3.6",
"postcss-cli": "^8.3.1",
"purgecss": "^4.0.3",
"stylelint": "13.13.1",
"serve": "^11.3.2",
"stylelint-config-twbs-bootstrap": "2.2.3"
},
"keywords": []
}