-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2.04 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "capes-in-the-dark",
"private": true,
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"build:strict": "astro check && yarn build",
"preview": "astro preview",
"astro": "astro",
"deploy": "yarn build && firebase deploy",
"lint": "eslint src --ext .astro,.js,.ts,.json",
"format": "prettier --write .",
"functions:build": "cd functions && yarn build",
"functions:deploy": "firebase deploy --only functions",
"emulators": "yarn emulators:start",
"emulators:start": "firebase emulators:start --import .firebaseEmulators",
"emulators:clean": "yarn emulators:clear && firebase emulators:start --export-on-exit --import .firebaseEmulators",
"emulators:save": "firebase emulators:start",
"emulators:seed": "tsx scripts/seed.ts",
"emulators:set": "tsx scripts/set.ts",
"emulators:reset": "yarn emulators:clear && yarn emulators:set",
"emulators:clear": "rm -rf .firebaseEmulators",
"fetch": "tsx scripts/ping.ts",
"fetch:ping": "yarn fetch ping",
"fetch:citwm": "yarn fetch citwm"
},
"dependencies": {
"@astrojs/check": "^0.5.6",
"@astrojs/react": "^3.1.0",
"@astrojs/rss": "^4.0.5",
"@astrojs/tailwind": "^5.1.0",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"astro": "^4.4.15",
"firebase": "^10.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.4.3",
"typescript": "5.4"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-astro": "^0.31.4",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"firebase-admin": "^12.0.0",
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.13.0",
"tsx": "^4.7.1"
}
}