-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
61 lines (61 loc) · 1.97 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
{
"name": "@gregrickaby/viewer-for-reddit",
"private": true,
"description": "Anonymously browse Reddit",
"version": "5.2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/gregrickaby/viewer-for-reddit.git"
},
"author": "Greg Rickaby <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gregrickaby/viewer-for-reddit/issues"
},
"homepage": "https://github.com/gregrickaby/viewer-for-reddit#readme",
"scripts": {
"dev": "rimraf .next && next dev --turbopack",
"build": "next build",
"start": "NODE_OPTIONS='-r newrelic' next start",
"format": "prettier '**/*.{mjs,cjs,js,jsx,ts,tsx,md,css,json,yml,yaml}' --ignore-path .prettierignore --cache --write",
"lint": "npm run lint:css && npm run lint:js && next lint && tsc",
"lint:css": "stylelint '**/*.css' --ignore-path .gitignore --fix",
"lint:js": "eslint . --fix"
},
"dependencies": {
"@newrelic/browser-agent": "^1.275.0",
"@tabler/icons-react": "^3.24.0",
"hls.js": "^1.5.17",
"newrelic": "^12.8.2",
"next": "^15.1.0",
"nextjs-toploader": "^3.7.15",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-masonry-css": "^1.0.16",
"sanitize-html": "^2.13.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.16.0",
"@evilmartians/lefthook": "^1.9.0",
"@tailwindcss/typography": "^0.5.15",
"@types/newrelic": "^9.14.6",
"@types/node": "^22.10.1",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"@types/sanitize-html": "^2.13.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.16.0",
"eslint-config-next": "^15.1.0",
"eslint-config-prettier": "^9.1.0",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"rimraf": "^6.0.1",
"sharp": "^0.33.5",
"stylelint": "^16.11.0",
"stylelint-config-standard": "^36.0.1",
"tailwindcss": "^3.4.16",
"typescript": "^5.7.2"
}
}