-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.63 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.63 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
{
"name": "site",
"type": "module",
"version": "0.0.1",
"scripts": {
"astro": "astro",
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"purge": "rimraf node_modules dist",
"tunnel": "lt --port 4321 --subdomain dev-ds3",
"lint": "rimraf dist && npm-run-all --parallel lint:astro lint:ts",
"lint:ts": "eslint \"src/**/*.{ts,tsx,astro}\" --ignore-path .eslintignore --cache",
"lint:astro": "astro check",
"format": "prettier --config .prettierrc --ignore-path .prettierignore --plugin=prettier-plugin-astro --cache --ignore-unknown --write ."
},
"dependencies": {
"@astrojs/check": "^0.2.0",
"@astrojs/react": "^3.0.10",
"@astrojs/sitemap": "^3.0.0",
"@fontsource-variable/josefin-sans": "^5.0.14",
"astro": "^3.2.2",
"astro-compress": "^2.0.15",
"astro-icon": "^0.8.1",
"astro-particles": "^2.10.0",
"axios": "^1.6.0",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"express": "^4.18.2",
"nodemailer": "^6.9.9",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.68.0",
"sharp": "^0.32.6",
"tsparticles": "^2.12.0",
"tsparticles-engine": "^2.12.0",
"typescript": "^5.2.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.4",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-astro": "^0.29.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"localtunnel": "^2.0.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"prettier-plugin-astro": "^0.12.0",
"rimraf": "^5.0.5"
}
}