-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.46 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
{
"name": "portfolio",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "eslint --ext .js,.jsx,.astro . & npm run stylelint",
"lint:fix": "eslint --ext .js,.jsx,.astro . --fix & npm run stylelint:fix",
"lint:watch": "eslint --ext .js,.jsx,.astro . --watch",
"stylelint": "stylelint 'src/**/*.{css,scss,astro}'",
"stylelint:fix": "stylelint 'src/**/*.{css,scss,astro}' --fix",
"stylelint:watch": "stylelint 'src/**/*.{css,scss,astro}' --watch",
"build-types": "tsc --noEmit --pretty"
},
"dependencies": {
"@astrojs/check": "^0.4.1",
"@astrojs/svelte": "^5.0.3",
"astro": "^4.2.6",
"svelte": "4.2.7",
"svelte-i18n": "^4.0.0",
"typescript": "5.2.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"astro-eslint-parser": "^0.16.0",
"eslint": "^8.54.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-astro": "^0.29.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"stylelint": "^15.11.0",
"stylelint-config-html": "^1.1.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-config-standard-scss": "^11.1.0"
}
}