-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.91 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.91 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "sweet",
"repository": "https://github.com/DatGreekChick/sweet",
"author": "Eleni Arvanitis Konior",
"license": "ISC",
"version": "1.0.0",
"private": true,
"description": "Minimal starter boilerplate for client-side React apps deployed to Firebase Hosting, using Bun, RTK Query, and styled-components.",
"main": "main.js",
"type": "module",
"keywords": [
"firebase",
"react",
"bun",
"rtk-query",
"styled-components",
"boilerplate"
],
"scripts": {
"build": "NODE_ENV=production bun run build.js",
"clean": "rm public/chunk*.js LICENSE.txt firebase-debug.log",
"deploy": "bun run build && bunx firebase deploy",
"lint": "bun run clean && bunx eslint .",
"lint:fix": "bun run lint --fix",
"prettier": "bunx prettier --write \"./**/*.{js,jsx,md}\"",
"start": "NODE_ENV=development bun dev.js"
},
"prettier": {
"trailingComma": "es5",
"semi": false,
"singleQuote": true,
"jsxSingleQuote": true,
"arrowParens": "avoid",
"proseWrap": "always"
},
"lint-staged": {
"*.{js,jsx}": [
"bun run prettier --",
"bun run lint:fix --",
"git add --"
],
"*.{md,css}": [
"bun run prettier --",
"git add --"
]
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"chokidar": "^5.0.0",
"eslint": "^10.1.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react": "^7.37.5",
"firebase-admin": "^13.7.0",
"firebase-tools": "^15.11.0",
"globals": "^17.4.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"open": "^11.0.0",
"picocolors": "^1.1.1",
"prettier": "^3.8.1"
},
"dependencies": {
"@reduxjs/toolkit": "^2.11.2",
"firebase": "^12.11.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-error-boundary": "^6.1.1",
"react-google-recaptcha-v3": "^1.11.0",
"react-router": "^7.13.1",
"styled-components": "^6.3.12"
}
}