-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 2.03 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
{
"name": "javascript-ui-poc",
"version": "1.0.0",
"description": "Demo project for building a Bootstrap powered site via npm. Learn new technologies related to JavaScript & UI and implement here",
"main": "index.js",
"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 src/scss -o dist/css/",
"css-lint": "stylelint src/scss/",
"css-prefix": "postcss --replace dist/css/styles.min.css --use autoprefixer --map",
"css-purge": "purgecss --keyframes --css dist/css/styles.min.css --content bootstrap_theme.html \"node_modules/bootstrap/js/dist/{util,modal}.js\" --output dist/css/",
"css": "npm-run-all css-compile css-prefix",
"server": "live-server --port=3000",
"start": "npm-run-all --parallel watch server",
"watch": "nodemon -e html,scss -x \"npm run css\"",
"test": "npm run css-lint && npm run css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saikatmahapatra/html-css-js-ui-project.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/saikatmahapatra/html-css-js-ui-project/issues"
},
"homepage": "https://github.com/saikatmahapatra/html-css-js-ui-project#readme",
"devDependencies": {
"autoprefixer": "^10.4.19",
"gulp": "^5.0.0",
"gulp-babel": "^8.0.0",
"gulp-clean": "^0.4.0",
"gulp-clean-css": "^4.3.0",
"gulp-cli": "^3.0.0",
"gulp-concat": "^2.6.1",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.1.0",
"gulp-uglify": "^3.0.2",
"live-server": "^1.2.2",
"node-sass": "^9.0.0",
"nodemon": "^3.1.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.38",
"postcss-cli": "^11.0.0",
"purgecss": "^6.0.0",
"sass": "^1.77.5",
"stylelint": "^16.6.1",
"stylelint-config-twbs-bootstrap": "^14.1.0"
},
"dependencies": {
"bootstrap": "^5.3.3",
"bootstrap-icons": "^1.11.3",
"jquery": "^3.7.1",
"popper.js": "^1.16.1"
}
}