-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
66 lines (66 loc) · 2.25 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
{
"name": "fronteers-website",
"version": "0.2.0",
"description": "Fronteers website",
"scripts": {
"prepare": "husky install",
"start": "npm run clean && npx @11ty/eleventy --serve --incremental",
"watch": "npx @11ty/eleventy --watch",
"serve": "npx @11ty/eleventy --serve",
"bench": "cross-env DEBUG=Eleventy:Benchmark* npx @11ty/eleventy",
"build": "npm run clean && npx @11ty/eleventy",
"build:debug": "cross-env DEBUG=Eleventy:* npm run build",
"build:serve": "npx serve dist",
"clean": "rimraf dist",
"start:quick": "cross-env BUILD_QUICK=1 npm run start",
"lint": "prettier --check src/**/*.{json,html,md,mdx,liquid,css,scss,js,jsx,ts,tsx}",
"format": "prettier --write src/**/*.{json,html,md,mdx,liquid,css,scss,js,jsx,ts,tsx}",
"postinstall": "patch-package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fronteers/website.git"
},
"author": "Fronteers",
"license": "MIT",
"bugs": {
"url": "https://github.com/fronteers/website/issues"
},
"homepage": "https://github.com/fronteers/website#readme",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-img": "^3.1.0",
"@11ty/eleventy-navigation": "^0.3.5",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@11ty/eleventy-plugin-vite": "^4.0.0",
"@orchidjs/eleventy-plugin-ids": "^0.1.1",
"@shopify/prettier-plugin-liquid": "^1.2.2",
"autoprefixer": "^10.4.14",
"cross-env": "^7.0.3",
"cssnano": "^6.0.1",
"eleventy-plugin-broken-links": "^2.0.3",
"fast-glob": "^3.3.1",
"husky": "8.0.3",
"jsdom": "^22.1.0",
"lightningcss-cli": "^1.23.0",
"patch-package": "^8.0.0",
"postcss-nesting": "^12.0.0",
"prettier": "^3.0.0",
"pretty-quick": "^3.1.3",
"rimraf": "^5.0.1",
"sass": "^1.64.1",
"slugify": "^1.6.6"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"browserslist": [
"defaults"
],
"dependencies": {
"luxon": "^3.5.0"
}
}