-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.13 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "trist",
"version": "1.0.0",
"description": "Personal website for Tristan Gibbs",
"scripts": {
"build": "run-s clean prod:css prod:js build:hash prod:eleventy",
"build:sass": "sass --no-source-map src/assets/sass/main.scss dist/assets/css/main.css",
"build:icons": "imagemin src/assets/images/icons/* --out-dir=src/_includes/icons --plugin=svgo",
"build:svg": "imagemin src/assets/images/svg/* --out-dir=src/_includes/svg --plugin=svgo",
"build:postcss": "postcss dist/assets/css/main.css --no-map -r",
"build:hash": "node buildHash.js",
"clean": "rm -rf dist",
"clean:hash": "node cleanHash.js",
"start": "npm run dev",
"dev": "npm-run-all clean clean:hash --parallel dev:*",
"dev:sass": "sass --watch --style=expanded src/assets/sass:dist/assets/css",
"dev:js": "rollup --watch --config --environment DEV:true",
"dev:eleventy": "cross-env ELEVENTY_ENV=development eleventy --serve",
"prod:css": "run-s build:sass build:postcss",
"prod:js": "rollup --config",
"prod:eleventy": "cross-env ELEVENTY_ENV=production eleventy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gibbsdigital/trist.git"
},
"keywords": [
"11ty",
"website",
"portfolio",
"blog"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/gibbsdigital/trist/issues"
},
"homepage": "https://github.com/gibbsdigital/trist#readme",
"devDependencies": {
"@11ty/eleventy": "^0.12.1",
"@11ty/eleventy-img": "^0.9.0",
"@11ty/eleventy-plugin-rss": "^1.1.1",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.1.1",
"autoprefixer": "^10.2.6",
"cross-env": "^7.0.3",
"cssnano": "^5.0.6",
"dotenv": "^10.0.0",
"html-minifier": "^4.0.0",
"imagemin-cli": "^6.0.0",
"katex": "^0.15.1",
"markdown-it": "^12.0.6",
"markdown-it-attrs": "^4.0.0",
"markdown-it-texmath": "^0.9.6",
"md5": "^2.3.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.4",
"postcss-cli": "^8.3.1",
"rollup": "^2.52.1",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.34.1"
},
"browserslist": [
"defaults"
]
}