-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.04 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.04 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
51
52
53
54
55
56
57
58
59
60
61
{
"name": "ghis",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"assets": "xcopy src\\assets\\ docs\\assets\\ /E /H /C /I /Y",
"404": "cp src/index.html docs/404.html",
"build-dev:html": "copy src\\index.html docs\\index.html",
"build-pro:html": "cp src/index.html docs/index.html",
"watch:scss": "chokidar 'src/scss/**/*.scss' -c 'npm run build:scss'",
"sass": "sass src/scss/styles.scss docs/css/styles.css --no-source-map --style=compressed",
"sass-dev": "sass --watch src/scss:docs/css --style=expanded",
"sass-prod": "sass src/scss:docs/css --no-source-map --style=compressed",
"start": "npm run build-dev && npm run build-dev:html && live-server docs --watch=docs",
"build:scss": "sass --load-path=node_modules src/scss/custom.scss docs/css/custom.css --style=compressed",
"build:js": "esbuild src/js/main.js --bundle --minify --outfile=docs/js/scripts.js",
"build-dev": "npm run clean && npm run build:scss && npm run build:js && npm run build-dev:html && npm run assets",
"dev": "npm run clean && npm run build:scss && npm run build:js && npm run build-dev:html && npm run assets",
"build": "npm run clean && npm run build:scss && npm run build:js && npm run build-pro:html && cd src && npm run 404",
"clean": "node scripting/clean.js"
},
"description": "Elegant resume and CV theme with Bootstrap 5.",
"keywords": [
"css",
"sass",
"html",
"responsive",
"theme",
"template"
],
"prettier": {
"printWidth": 100,
"singleQuote": true,
"overrides": [
{
"files": "*.html",
"options": {
"parser": "angular"
}
}
]
},
"private": true,
"dependencies": {
"bootstrap": "^5.3.8"
},
"devDependencies": {
"autoprefixer": "10.4.14",
"browser-sync": "^3.0.4",
"chokidar": "^3.5.3",
"concurrently": "6.3.0",
"esbuild": "^0.27.0",
"live-server": "^1.2.0",
"postcss": "^8.5.6",
"prettier": "2.8.6",
"pug": "^3.0.3",
"sass": "1.60.0",
"shelljs": "0.8.5",
"upath": "2.0.1"
}
}