-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.26 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
{
"name": "purafog",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "eslint --cache --fix src/**/*",
"typecheck": "npx tsc --noEmit",
"git:reset": "git stash && git checkout main && git pull && git branch -D staging && git checkout -b staging && git push -uf origin staging && git stash pop"
},
"dependencies": {
"@astrojs/image": "^0.7.1",
"@astrojs/partytown": "^1.0.2",
"@astrojs/preact": "^1.1.0",
"@astrojs/sitemap": "^1.0.0",
"@astrojs/tailwind": "^2.0.1",
"@netlify/functions": "^1.2.0",
"astro": "^1.6.12",
"canvas-confetti": "^1.5.1",
"preact": "^10.11.0",
"tailwindcss": "^3.1.8"
},
"devDependencies": {
"@types/canvas-confetti": "^1.4.3",
"@types/node": "^18.7.23",
"@types/react": "^18.0.20",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-astro": "^0.19.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1"
}
}