-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.83 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
{
"name": "anuvrat_website",
"version": "1.0.0",
"description": "A boilerplate for eleventy websites",
"browserslist": [
"defaults"
],
"scripts": {
"start": "npm run dev",
"dev": "run-s clean eleventy:dev --print-label",
"build": "run-s clean eleventy:prod --print-label",
"eleventy:dev": "cross-env ELEVENTY_ENV=development eleventy --serve",
"eleventy:prod": "cross-env ELEVENTY_ENV=production eleventy",
"clean": "del-cli dist/* .cache/*",
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "mkdir .cache"
},
"license": "MIT",
"dependencies": {
"@11ty/eleventy": "^0.12.1",
"@11ty/eleventy-cache-assets": "^2.1.0",
"@11ty/eleventy-img": "^0.9.0",
"@11ty/eleventy-navigation": "^0.1.6",
"@11ty/eleventy-plugin-rss": "^1.0.9",
"@babel/core": "^7.11.4",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@octokit/rest": "^18.2.0",
"@popperjs/core": "^2.9.2",
"@vidhill/fortawesome-brands-11ty-shortcode": "^1.0.1",
"@vidhill/fortawesome-free-regular-11ty-shortcode": "^1.0.2",
"axios": "^0.21.1",
"babel-loader": "^8.2.2",
"bootstrap": "^5.0.1",
"clean-css": "^4.2.3",
"cssesc": "^3.0.0",
"del-cli": "^3.0.1",
"dotenv-flow": "^3.2.0",
"eleventy-plugin-date": "^1.0.0",
"eleventy-plugin-lazyimages": "^2.1.0",
"html-minifier": "^4.0.0",
"jsdom": "^16.6.0",
"markdown-it": "^12.0.2",
"memfs": "^3.2.2",
"moment": "^2.29.1",
"npm-run-all": "^4.1.5",
"sass": "^1.35.1",
"spotlight.js": "^0.7.8",
"webpack": "^5.39.1"
},
"devDependencies": {
"cross-env": "^7.0.3"
}
}