-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.69 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.69 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
55
56
57
58
{
"name": "jdsteinbach-11ty",
"version": "1.0.0",
"description": "11ty SSG for my blog",
"main": ".eleventy.js",
"repository": {
"type": "git",
"url": "https://github.com/jdsteinbach/jdsteinbach.github.io"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint:styles": "npx stylelint '**/*.scss' --report-needless-disables",
"start": "npm run serve",
"serve": "cross-env ELEVENTY_ENV=dev eleventy --serve",
"serve:debug": "cross-env ELEVENTY_ENV=dev DEBUG=Eleventy* eleventy",
"build": "cross-env ELEVENTY_ENV=prod eleventy",
"build:debug": "cross-env ELEVENTY_ENV=prod DEBUG=Eleventy* eleventy",
"build:netlify": "eleventy --config=netlify.eleventy.js"
},
"author": "James Steinbach",
"license": "ISC",
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"autoprefixer": "^10.4.20",
"axios": "^1.13.0",
"cross-env": "^7.0.3",
"cssnano": "^7.1.1",
"eleventy-plugin-dropcap": "^1.1.0",
"eleventy-plugin-toc": "^1.1.5",
"eslint": "^9.31.0",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^9.2.0",
"markdown-it-highlightjs": "^4.2.0",
"postcss": "^8.5.6",
"sass": "^1.80.4",
"stylelint": "^16.20.0",
"stylelint-config-sass-guidelines": "^12.1.0",
"stylelint-config-standard": "^38.0.0",
"stylelint-order": "^7.0.0",
"stylelint-scss": "^6.12.1",
"stylelint-selector-bem-pattern": "^4.0.0"
},
"standard": {
"globals": [
"FormData",
"addEventListener",
"fetch",
"localStorage"
],
"parser": "babel-eslint"
},
"dependencies": {
"busboy": "^1.4.0",
"dotenv": "^17.2.3",
"form-data": "^4.0.4",
"mailgun.js": "^5.0.1"
}
}