forked from furtabs/website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.94 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.94 KB
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
{
"name": "website",
"version": "0.0.1",
"private": false,
"scripts": {
"dev": "astro dev --experimental-integrations",
"start": "astro dev --experimental-integrations",
"build": "astro build --experimental-integrations",
"preview": "astro preview",
"check-astro": "astro check --experimental-integrations",
"format": "prettier -w .",
"check-tsc": "tsc --noEmit",
"check-eslint": "eslint \"src/**/*.{ts,js,tsx,jsx,astro}\"",
"fix-eslint": "eslint --fix \"src/**/*.{ts,js,tsx,jsx,astro}\"",
"lint": "npm run format && npm run check-astro && npm run check-tsc && npm run check-eslint",
"lint-fix": "npm run format && npm run check-astro && npm run check-tsc && npm run fix-eslint",
"prepare": "husky install",
"serve": "npm run build -- --config astro.config.node.mjs && node server/index.mjs",
"postinstall": "husky install && cd ui && git config core.hooksPath ../.husky"
},
"devDependencies": {
"@astrojs/deno": "^0.1.8",
"@astrojs/netlify": "^0.4.8",
"@astrojs/node": "^0.1.3",
"@astrojs/solid-js": "^0.2.0",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@iconify/json": "^2.1.70",
"@svgr/core": "^6.2.1",
"astro": "^1.0.0-beta.61",
"astro-i18next": "^1.0.0-beta.3",
"eslint-config-common": "./eslint-config-common",
"eslint-plugin-astro": "^0.14.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"express": "^4.18.1",
"husky": "^8.0.1",
"i18next": "^21.8.11",
"iso-639-1": "^2.1.15",
"lint-staged": "^13.0.3",
"sass": "^1.53.0",
"solid-js": "^1.4.5",
"svgo": "^2.8.0",
"unplugin-icons": "^0.14.7",
"vite-plugin-solid": "^2.2.6"
},
"pre-commit": [
"format"
],
"lint-staged": {
"*.{mjs,jsx,js,ts,tsx}": "npm run lint-fix",
"*.svg": "svgo"
},
"engines": {
"yarn": "\n\nUse npm please\n\n",
"pnpm": "\n\nUse npm please\n\n",
"node": ">=18.4.0",
"npm": ">=8.13.2"
}
}