-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.72 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
{
"name": "photo-grid",
"version": "1.0.0",
"description": "Javascript based self host-able photography portfolio coupled with Sanity headless CMS for asset management.",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "eleventy --config=eleventy.config.js",
"dev": "eleventy --config=eleventy.config.js --serve",
"format": "prettier . --write --ignore-unknown",
"lint": "eslint ./src/js/**/*.ts",
"prepare": "node -e \"(process.env.CI === undefined) ? require('husky').install() : console.log('Git hooks did not install')\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/kwickramasekara/photo-grid.git"
},
"author": "Keith Wickramasekara",
"license": "MIT",
"bugs": {
"url": "https://github.com/kwickramasekara/photo-grid/issues"
},
"homepage": "https://github.com/kwickramasekara/photo-grid#readme",
"dependencies": {
"sanity": "^3.20.0",
"sanity-plugin-media": "^2.2.5"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-fetch": "^4.0.0",
"@11ty/eleventy-plugin-vite": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"autoprefixer": "^10.4.16",
"dotenv": "^16.3.1",
"eslint": "^8.54.0",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"postcss": "^8.4.31",
"prettier": "^3.1.0",
"prettier-plugin-jinja-template": "^1.3.1",
"simple-icons": "^10.0.0",
"tailwindcss": "^3.4.3"
},
"rationale": {
"scripts": {
"prepare": "Husky install shouldn't run when installing packages with npm ci. Opting to use somewhat of a manual check for this to support different CI environments. See Husky docs for more info."
}
}
}