-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.19 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.19 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
{
"name": "mywarp.github.io",
"version": "1.0.0",
"description": "Website for the MyWarp project, hosted on GitHub pages",
"private": true,
"scripts": {
"purgecss": "purgecss --css build/site.css --content build/*.html build/**/*.html build/*.js --output build/",
"build:esbuild": "esbuild assets/javascripts/*.js --outdir=.tmp/javascripts/ --bundle --minify",
"build:sass": "sass assets/stylesheets/site.scss .tmp/stylesheets/site.css --no-source-map --style compressed --load-path=node_modules",
"watch:esbuild": "esbuild assets/javascripts/*.js --outdir=.tmp/javascripts/ --bundle --watch",
"watch:sass": "sass assets/stylesheets/site.scss .tmp/stylesheets/site.css --watch --load-path=node_modules"
},
"repository": {
"type": "git",
"url": "git@github.com:MyWarp/mywarp.github.io.git"
},
"author": "TheE (https://github.com/TheE)",
"license": "GPL3",
"devDependencies": {
"esbuild": "^0.24.2",
"purgecss": "^6.0.0",
"sass": "^1.80.6"
},
"dependencies": {
"bourbon": "^7.3.0",
"css.gg": "2.1.4",
"delicious-hamburgers": "^1.2.3",
"hamburgers": "^1.2.1",
"modern-normalize": "^3.0.1",
"tsparticles-preset-links": "^2.12.0"
}
}