-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.02 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
61
62
63
64
65
66
67
{
"name": "payoneer-calculator",
"version": "1.0.0",
"type": "module",
"scripts": {
"astro": "astro",
"build": "astro check && astro build",
"dev": "astro dev",
"prepare": "husky",
"preview": "astro preview",
"start": "astro dev",
"run:eslint": "eslint --cache --fix --ext .js,.mjs,.cjs ./"
},
"lint-staged": {
"./**/*.{js,mjs,cjs}": [
"eslint --cache --fix --ext .js,.mjs,.cjs ./",
"prettier --cache --write \"./**/*.{js,mjs,cjs}\""
],
"./src/**/*.astro": [
"eslint --cache --fix --ext .astro ./src/",
"prettier --cache --write \"./src/**/*.astro\""
],
"./src/**/*.tsx": [
"eslint --cache --fix --ext .tsx ./src/",
"prettier --cache --write \"./src/**/*.tsx\""
],
"./src/**/*.css": "prettier --cache --write \"./src/**/*.css\"",
"./**/*.json": "prettier --cache --write \"./**/*.json\"",
"./**/*.yml": "prettier --cache --write \"./**/*.yml\""
},
"dependencies": {
"@astrojs/check": "0.9.4",
"@astrojs/react": "4.2.0",
"@astrojs/tailwind": "5.1.5",
"@vite-pwa/astro": "0.4.3",
"astro": "4.16.18",
"astro-iconify": "1.2.0",
"firebase": "11.2.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"tailwindcss": "3.4.17",
"typescript": "5.7.3",
"vite-plugin-pwa": "0.20.5",
"workbox-window": "7.3.0"
},
"devDependencies": {
"@types/react": "19.0.8",
"@types/react-dom": "19.0.3",
"@typescript-eslint/eslint-plugin": "7.0.1",
"@typescript-eslint/parser": "7.6.0",
"eslint": "8.56.0",
"eslint-config-love": "47.0.0",
"eslint-config-prettier": "10.0.1",
"eslint-config-standard": "17.1.0",
"eslint-plugin-astro": "0.34.0",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-n": "16.0.0",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-react": "7.37.2",
"husky": "9.1.7",
"lint-staged": "15.4.3",
"prettier": "3.4.2",
"prettier-plugin-astro": "0.14.1",
"prettier-plugin-tailwindcss": "0.6.11"
}
}