generated from twbs/bootstrap-npm-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.47 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
{
"name": "bootstrap-npm-starter",
"version": "1.1.0",
"description": "Demo project for building a Bootstrap powered site via npm.",
"repository": {
"type": "git",
"url": "git+https://github.com/twbs/bootstrap-npm-starter.git"
},
"bugs": {
"url": "https://github.com/twbs/bootstrap-npm-starter/issues"
},
"homepage": "https://github.com/twbs/bootstrap-npm-starter#readme",
"scripts": {
"build": "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 assets/css/",
"css-prefix": "postcss --replace assets/css/project.css --use autoprefixer --map",
"css-purge": "purgecss --css assets/css/project.css --content index.html --output assets/css/",
"css": "npm run css-compile && npm run css-prefix",
"server": "serve --listen 3000",
"watch": "nodemon -e html,scss -x \"npm run css\"",
"test": "npm run css"
},
"keywords": [
"bootstrap",
"sass",
"css",
"javascript",
"starter",
"template"
],
"author": "mdo",
"license": "MIT",
"dependencies": {
"@asu-design-system/bootstrap4-theme": "^1.0.4",
"jquery": "^3.5.1",
"jquery-csv": "^1.0.11",
"popper.js": "1.16.1-lts",
"slick-carousel": "^1.8.1"
},
"devDependencies": {
"autoprefixer": "^9.8.0",
"node-sass": "^4.14.1",
"nodemon": "^2.0.4",
"postcss-cli": "^7.1.1",
"purgecss": "^2.1.2",
"serve": "^11.3.0"
}
}