-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.6 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
{
"private": true,
"scripts": {
"start": "npm run localenv && concurrently -k --restart-tries 3 --restart-after 3000 -p [{name}] -n webpack,jekyll -c yellow,cyan npm:watch:webpack npm:watch:jekyll",
"dev": "encore dev",
"localenv": ". ./.env.local",
"prod": "encore prod",
"build": "bundle exec jekyll build",
"watch:webpack": "encore dev --watch",
"watch:jekyll": "bundle exec jekyll serve --host=0.0.0.0 -l -o",
"lint": "eslint --cache .",
"format": "npm run lint -- --fix",
"postinstall": "bundle install --path=vendor/bundle --jobs=4 --retry=3"
},
"dependencies": {
"@dracula/dracula-ui": "^0.8.0",
"@duckdoc/termynal": "^1.0.0",
"alpinejs": "^3.10.3",
"github-markdown-dracula-css": "^4.0.3",
"jquery": "^3.6.1",
"postcss-custom-properties": "^12.1.8",
"postcss-import": "^15.0.0",
"postcss-nested": "^5.0.6"
},
"devDependencies": {
"@symfony/webpack-encore": "^3.1.0",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/line-clamp": "^0.4.2",
"@tailwindcss/typography": "^0.5.7",
"autoprefixer": "^10.4.8",
"concurrently": "^7.4.0",
"eslint": "^8.23.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.22.1",
"postcss": "^8.4.16",
"postcss-loader": "^7.0.1",
"tailwindcss": "^3.1.8"
},
"browserslist": [
"> 0.5%",
"last 2 versions",
"Firefox ESR",
"not dead"
]
}