-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.38 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
{
"name": "lynkos.github.io",
"version": "1.0.0",
"scripts": {
"test:build": "node --test",
"test:dev": "node --test --watch",
"build:css": "sass --no-source-map --style=compressed assets/stylesheets/sass:assets/stylesheets/css",
"build:js": "babel src --out-dir dist",
"build": "npm run build:css && npm run build:js",
"dev:js": "nodemon --watch src --ignore dist --exec babel src --out-dir dist --ext js,json --presets=@babel/preset-env",
"dev:css": "sass --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": [],
"author": "Kiran Brahmatewari",
"license": "ISC",
"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",
"nodemon": "^3.1.9",
"sass": "^1.83.4"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"targets": {
"node": "current"
}
}