-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.17 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
{
"name": "@slashid/website-webauthn-blog",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"test": "exit 0",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx,astro}\" --max-warnings 0",
"prettier": "prettier \"src/**/*.+(ts|tsx|js|jsx|json|yml|yaml|md|mdx|astro)\" --write",
"validate": "npm run lint && npm run prettier && npm run astro check"
},
"dependencies": {
"@astrojs/svelte": "^1.0.2",
"@popmotion/popcorn": "^0.4.4",
"astro": "^1.6.2",
"svelte": "^3.52.0"
},
"devDependencies": {
"@significa/eslint-config": "^2.0.1",
"@significa/prettier-config": "^2.0.0",
"eslint": "^8.26.0",
"eslint-plugin-astro": "^0.21.0",
"jest": "^29.2.2",
"postcss-extend-rule": "^4.0.0",
"postcss-import": "^15.0.0",
"postcss-load-config": "^4.0.1",
"postcss-nested": "^6.0.0",
"postcss-preset-env": "^7.8.2",
"prettier": "^2.7.1",
"prettier-plugin-astro": "^0.7.0",
"rehype-img-size": "^1.0.1",
"remark-unwrap-images": "^3.0.1",
"svgo": "^3.0.0"
}
}