-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.67 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "antonio-laguna",
"version": "1.0.0",
"private": true,
"description": "My personal website!",
"scripts": {
"dev": "ELEVENTY_ENV=dev npm-run-all --parallel watch:css watch:js watch:eleventy",
"build": "ELEVENTY_ENV=prod npm-run-all css js build:eleventy",
"build:eleventy": "eleventy",
"lint:css": "stylelint 'src/css/**/*.css' --custom-formatter=node_modules/stylelint-actions-formatters",
"lint:js": "eslint src/**/*.js rollup.config.js eleventy/**/*.js --max-warnings 0",
"css": "npm-run-all --parallel css:main css:quiz",
"css:main": "postcss src/css/styles.css -o public/css/styles.css --env=production",
"css:quiz": "postcss src/css/quiz.css -o public/css/quiz.css --env=production",
"css:dev": "npm-run-all --parallel css:dev:main css:dev:quiz",
"css:dev:main": "postcss src/css/styles.css -o public/css/styles.css",
"css:dev:quiz": "postcss src/css/quiz.css -o public/css/quiz.css",
"js": "rollup -c rollup.config.js",
"watch:js": "rollup -c rollup.config.js -w",
"watch:eleventy": "npx eleventy --serve",
"watch:css": "chokidar 'src/css/**/*.*' -c 'npm run css:dev' --initial"
},
"repository": {
"type": "git",
"url": "https://github.com/LagunasPris/antonio-laguna"
},
"author": {
"name": "Antonio Laguna",
"email": "antonio@laguna.es",
"url": "https://antonio.laguna.es"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/LagunasPris/antonio-laguna/issues"
},
"homepage": "https://antonio.laguna.es",
"dependencies": {
"@11ty/eleventy": "^1.0.1",
"@11ty/eleventy-navigation": "^0.3.2",
"@11ty/eleventy-plugin-rss": "^1.1.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^4.0.0",
"@11ty/eleventy-upgrade-help": "^1.0.1",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^21.1.0",
"@rollup/plugin-node-resolve": "^13.2.1",
"@thedigitalman/eleventy-plugin-toc-a11y": "^2.1.0",
"autoprefixer": "^10.4.4",
"babel-eslint": "^10.1.0",
"cssnano": "^5.1.7",
"dotenv": "^16.0.0",
"eleventy-plugin-embed-twitter": "^1.3.3",
"eleventy-plugin-youtube-embed": "^1.7.0",
"eslint": "^8.14.0",
"eslint-config-firstandthird": "^6.0.3",
"eslint-module-utils": "^2.7.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-mocha": "^10.0.4",
"gsap": "^3.10.4",
"hasha": "^5.2.2",
"html-minifier": "^4.0.0",
"luxon": "^2.3.2",
"markdown-it": "^12.3.2",
"markdown-it-abbr": "^1.0.4",
"markdown-it-anchor": "^8.6.2",
"markdown-it-attrs": "^4.1.3",
"markdown-it-container": "^3.0.0",
"markdown-it-image-figures": "^2.1.0",
"markdown-it-link-attributes": "^4.0.0",
"modern-css-reset": "^1.4.0",
"node-fetch": "^2.6.7",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.12",
"postcss-calc": "^8.2.4",
"postcss-cli": "^9.1.0",
"postcss-css-variables": "^0.18.0",
"postcss-import": "^14.1.0",
"postcss-mixins": "^9.0.2",
"postcss-nested": "^5.0.6",
"postcss-preset-env": "^7.4.3",
"postcss-sort-media-queries": "^4.2.1",
"quizes": "^1.5.0",
"require-all": "^3.0.0",
"rollup": "^2.70.2",
"rollup-plugin-filesize": "^9.1.2",
"rollup-plugin-terser": "^7.0.2",
"slugify": "^1.6.5",
"stylelint": "^14.7.1",
"stylelint-actions-formatters": "^14.7.0",
"stylelint-config-sass-guidelines": "^9.0.1",
"tinybounce": "^1.2.0"
},
"eslintConfig": {
"extends": [
"firstandthird",
"plugin:mocha/recommended"
],
"plugins": [
"mocha"
],
"env": {
"browser": true,
"es6": true
},
"parserOptions": {
"ecmaVersion": 2020
}
},
"devDependencies": {
"chokidar-cli": "^3.0.0"
}
}