-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.76 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
{
"name": "hnews",
"version": "8.3.0",
"description": "HNews",
"private": true,
"source": "src/index.html",
"browserslist": "defaults",
"scripts": {
"dev": "parcel -p 8000 --lazy",
"build": "rm -rf dist && rm -rf docs && parcel build --no-source-maps --dist-dir docs --public-url=/hnews",
"update": "ncu -u",
"watch": "parcel watch"
},
"author": "Luca Bacchi <[email protected]> (http://www.lucabacchi.it)",
"license": "ISC",
"prettier": {
"arrowParens": "always",
"bracketSpacing": false,
"embeddedLanguageFormatting": "auto",
"htmlWhitespaceSensitivity": "css",
"insertPragma": false,
"jsxBracketSameLine": false,
"jsxSingleQuote": false,
"printWidth": 120,
"proseWrap": "preserve",
"quoteProps": "as-needed",
"requirePragma": false,
"semi": true,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "es5",
"useTabs": false,
"vueIndentScriptAndStyle": false
},
"devDependencies": {
"@types/bootstrap": "^5.2.10",
"@types/human-date": "^1.4.5",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"npm-check-updates": "^17.1.14",
"parcel": "^2.13.3",
"process": "^0.11.10"
},
"dependencies": {
"bootstrap": "^5.3.3",
"bootstrap-icons": "^1.11.3",
"firebase": "^11.3.1",
"human-date": "^1.4.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-intersection-observer-hook": "^3.0.1",
"react-router-dom": "^7.2.0",
"swr": "^2.3.2",
"zod": "^3.24.2"
},
"@parcel/resolver-default": {
"packageExports": true
}
}