-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
60 lines (60 loc) · 1.77 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
{
"name": "@locomotivemtl/astro-boilerplate",
"title": "Locomotive Boilerplate",
"type": "module",
"version": "0.1.0",
"engines": {
"node": "20.x",
"npm": ">=8.0"
},
"repository": {
"type": "git",
"url": "https://github.com/locomotivemtl/astro-boilerplate.git"
},
"author": {
"name": "Locomotive",
"email": "[email protected]",
"homepage": "https://locomotive.ca"
},
"scripts": {
"prepare": "npx simple-git-hooks",
"dev": "astro dev --host",
"start": "astro dev --host",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"format": "npx lint-staged"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/tailwind": "^5.1.2",
"@locomotivemtl/grid-helper": "^1.0.0",
"@swup/head-plugin": "^2.2.0",
"@swup/preload-plugin": "^3.2.10",
"@swup/scripts-plugin": "^2.1.0",
"astro": "^4.16.8",
"astro-seo": "^0.8.4",
"astro-svg-sprite": "^1.1.0",
"lint-staged": "^15.2.10",
"locomotive-scroll": "^5.0.0-beta.21",
"nanostores": "^0.11.3",
"sass": "^1.77.4",
"swup": "^4.7.0",
"ts-debounce": "^4.0.0",
"typescript": "^5.4.5"
},
"devDependencies": {
"@locomotivemtl/postcss-remove-double-parentheses": "^1.0.0",
"@locomotivemtl/postcss-tailwind-shortcuts": "^1.0.5",
"prettier": "^3.3.1",
"prettier-plugin-astro": "^0.14.0",
"prettier-plugin-tailwindcss": "^0.6.1",
"simple-git-hooks": "^2.11.1"
},
"simple-git-hooks": {
"pre-commit": "npm run format"
},
"lint-staged": {
"*": "prettier --write"
}
}