-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.25 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
62
63
64
65
66
67
68
69
70
71
{
"name": "lynkos.github.io",
"version": "1.0.0",
"scripts": {
"build:prefix": "postcss assets/stylesheets/css/*.css --replace --use autoprefixer --no-map",
"build:css": "sass --quiet --no-source-map --style=compressed assets/stylesheets/sass:assets/stylesheets/css",
"build:js": "babel src --out-dir dist --no-comments",
"build:html": "html-minifier --input-dir . --output-dir . --file-ext html --remove-comments --collapse-whitespace --minify-js true --minify-css true",
"build": "(npm run build:js && npm run build:html) & (npm run build:css && npm run build:prefix)",
"dev:js": "nodemon --watch src --ignore dist --exec babel src --out-dir dist --ext js,json",
"dev:css": "sass --verbose --watch --no-source-map --style=compressed assets/stylesheets/sass:assets/stylesheets/css",
"dev": "npm run dev:js & npm run dev:css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lynkos/lynkos.github.io.git"
},
"keywords": [
"code",
"lynkos",
"front-end",
"portfolio",
"macos",
"terminal",
"apple"
],
"author": "Kiran Brahmatewari",
"license": "MIT",
"bugs": {
"url": "https://github.com/lynkos/lynkos.github.io/issues"
},
"homepage": "https://github.com/lynkos/lynkos.github.io",
"description": "GitHub repository for my personal website",
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"autoprefixer": "^10.4.20",
"babel-preset-minify": "^0.5.2",
"html-minifier": "^4.0.0",
"nodemon": "^3.1.9",
"postcss": "^8.5.3",
"postcss-cli": "^11.0.0",
"sass": "^1.83.4"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"modules": false
}
],
[
"minify",
{
"builtIns": false
}
]
]
},
"targets": {
"node": "current"
},
"browserslist": [
"> 0.5%",
"cover 99%",
"not op_mini all",
"not dead"
]
}