-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.18 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.18 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
{
"title": "Personalsite",
"name": "personal-site",
"version": "6.0.5",
"scripts": {
"build": "npm run clean && npm run build:pug && npm run build:scss && npm run build:scripts && npm run build:assets",
"build:assets": "node scripts/build-assets.js",
"build:pug": "node scripts/build-pug.js",
"build:scripts": "node scripts/build-scripts.js",
"build:scss": "node scripts/build-scss.js",
"clean": "node scripts/clean.js",
"start": "npm run build && node scripts/start.js",
"start:debug": "npm run build && node scripts/start-debug.js"
},
"keywords": [
"css",
"sass",
"scss",
"html",
"pug",
"responsive",
"theme",
"template"
],
"dependencies": {
"bootstrap": "4.5.3"
},
"devDependencies": {
"autoprefixer": "10.0.1",
"browser-sync": "2.26.13",
"chokidar": "3.4.3",
"concurrently": "5.3.0",
"postcss": "8.1.4",
"prettier": "2.1.2",
"pug": "3.0.0",
"sass": "1.28.0",
"shelljs": "0.8.4",
"upath": "2.0.0"
}
}