-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.38 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
54
55
56
{
"name": "mustachebash.com",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"type": "module",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"check:updates": "ncu",
"update:deps": "ncu -u",
"lint": "prettier . --check && eslint . --ext .js,.ts,.tsx,.astro",
"format": "prettier . --write",
"test": "astro check && tsc --noEmit"
},
"browserslist": [
"last 1 version",
"iOS > 10"
],
"author": "Wild Feather LLC",
"license": "UNLICENSED",
"dependencies": {
"@astrojs/react": "^4.4.2",
"astro": "^5.16.5",
"braintree-web": "^3.134.0",
"classnames": "^2.5.1",
"date-fns": "^4.1.0",
"normalize.css": "^8.0.1",
"qrcode": "^1.5.4",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"swiper": "^12.0.3"
},
"devDependencies": {
"@astrojs/check": "^0.9.6",
"@eslint/js": "^9.39.2",
"@types/braintree-web": "^3.96.17",
"@types/facebook-pixel": "^0.0.31",
"@types/gtag.js": "^0.0.20",
"@types/qrcode": "^1.5.6",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/parser": "^8.51.0",
"eslint": "^9.39.2",
"eslint-plugin-astro": "^1.5.0",
"npm-check-updates": "^19.2.0",
"prettier": "^3.7.4",
"prettier-plugin-astro": "^0.14.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.52.0"
}
}