-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
91 lines (91 loc) · 3.22 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "eleventy-starter",
"version": "1.0.0",
"description": "A small static microsite starter project using Eleventy JS with NJK, Parcel 2 with SCSS and JS.",
"license": "BSD-3-Clause",
"author": {
"name": "Damian Keeghan",
"url": "https://github.com/dkeeghan/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dkeeghan/eleventy-starter.git"
},
"bugs": {
"url": "https://github.com/dkeeghan/eleventy-starter/issues",
"email": "[email protected]"
},
"engines": {
"node": ">= 16"
},
"browserslist": [
"> 2%",
"last 2 Edge versions",
"last 2 Safari versions",
"last 2 Firefox versions",
"last 2 Chrome versions",
"last 2 iOS versions",
"last 3 Android versions",
"last 2 ChromeAndroid versions",
"last 2 Samsung versions",
"not ie 11",
"not ie 10",
"not ie 9",
"not ie 8",
"not dead"
],
"scripts": {
"clean": "run-s clean:*",
"clean:cache": "rimraf ./.parcel-cache",
"clean:site": "rimraf ./dist",
"icons": "npm run icons:clean && npm run icons:optimise && npm run icons:combine && npm run icons:clean",
"icons:clean": "rimraf ./src/assets/icons/svgs-min",
"icons:combine": "svgstore -o ./src/assets/img/icons.svg -p svg- ./src/assets/icons/svgs-min/*.svg",
"icons:optimise": "mkdirp ./src/assets/icons/svgs-min && svgo --folder ./src/assets/icons/svgs-src --output ./src/assets/icons/svgs-min",
"build": "run-s clean build:* cache",
"build:html": "cross-env ELEVENTY_ENV=production eleventy",
"build:assets": "cross-env NODE_ENV=production parcel build ./src/assets/css/style.scss ./src/assets/js/app.js --dist-dir ./dist/assets --no-source-maps",
"watch": "run-s clean && run-p watch:*",
"watch:html": "cross-env ELEVENTY_ENV=development eleventy --serve --port=8080",
"watch:assets": "cross-env NODE_ENV=development parcel watch ./src/assets/css/style.scss ./src/assets/js/app.js --dist-dir ./dist/assets --no-hmr --public-url .",
"start": "npm run watch"
},
"devDependencies": {
"@11ty/eleventy": "^1.0.1",
"@11ty/eleventy-navigation": "^0.3.3",
"@11ty/eleventy-plugin-syntaxhighlight": "^4.0.0",
"@babel/core": "^7.17.10",
"@deloitte-digital-au/babel-preset-app": "^3.0.0",
"@deloitte-digital-au/eslint-config": "^3.4.2",
"@deloitte-digital-au/stylelint-config": "^2.0.1",
"@fullhuman/postcss-purgecss": "^4.1.3",
"@parcel/optimizer-cssnano": "^2.5.0",
"@parcel/packager-css": "^2.5.0",
"@parcel/transformer-css": "^2.5.0",
"@parcel/transformer-postcss": "^2.5.0",
"@parcel/transformer-sass": "^2.5.0",
"cross-env": "^7.0.3",
"html-minifier": "^4.0.0",
"js-beautify": "^1.14.3",
"npm-run-all": "^4.1.5",
"nunjucks": "^3.2.3",
"parcel": "^2.0.0-rc.0",
"postcss": "^8.3.6",
"prismjs": "^1.24.1",
"request": "^2.88.2",
"rimraf": "^3.0.2",
"sass": "^1.51.0",
"slugify": "^1.6.5",
"stylelint": "^14.8.2",
"stylelint-cli": "^1.3.0",
"svg-sprite": "^1.5.4",
"svgo": "^2.8.0",
"svgstore-cli": "^2.0.1"
},
"dependencies": {
"@deloitte-digital-au/ddbreakpoints": "^2.0.4",
"@dkwd/dk-a11y": "^0.0.1",
"@dkwd/dk-offscreen": "^0.0.2",
"normalize.css": "^8.0.1"
}
}