-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.88 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "live-feedback",
"displayName": "Live feedback tool",
"version": "2.2.2",
"author": "Julian Kominovic",
"description": "Leave feedback on any website and share it with your team 🚀.",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/JulianKominovic/live-feedback"
},
"homepage": "https://jkominovic.dev/live-feedback",
"keywords": [
"react",
"vite",
"live-feedback"
],
"engines": {
"node": ">=18.12.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"script:dev": "tsc --noEmit && NODE_ENV=development node ./esbuild.js",
"script:prod": "tsc --noEmit && NODE_ENV=production node ./esbuild.js",
"start-server": "node ./server.js",
"start-dev-server": "NODE_ENV=development node ./server.js",
"fmt": "prettier --write '**/*.{tsx,ts,json,css,scss,md}'",
"unused-exports": "ts-unused-exports ./tsconfig.json",
"prepare": "husky",
"patch": "npm version patch -m \"chore: release version %s\"",
"minor": "npm version minor -m \"chore: release version %s\"",
"major": "npm version major -m \"chore: release version %s\"",
"version": "pnpm run script:prod && git add build",
"postversion": "git push && git push --tags && echo \"\n\nUse https://www.jsdelivr.com/tools/purge to clear cdn cache!\""
},
"dependencies": {
"@emotion/cache": "11.11.0",
"@emotion/core": "11.0.0",
"@emotion/react": "11.11.4",
"@emotion/styled": "11.11.5",
"@floating-ui/react": "0.26.17",
"@gripeless/pico": "1.0.1",
"@medv/finder": "3.2.0",
"@octokit/core": "6.1.2",
"@octokit/oauth-app": "7.1.2",
"@phosphor-icons/react": "2.1.6",
"@radix-ui/react-icons": "1.3.0",
"@radix-ui/react-tooltip": "1.0.7",
"@vercel/analytics": "1.3.1",
"canvas-confetti": "1.9.3",
"clsx": "2.1.1",
"country-code-to-flag-emoji": "1.3.3",
"css-selector-generator": "3.6.7",
"framer-motion": "11.1.7",
"html2canvas": "1.4.1",
"js-cookie": "3.0.5",
"next": "14.2.4",
"octokit": "4.0.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"ua-parser-js": "2.0.0-beta.3",
"zustand": "4.5.2"
},
"devDependencies": {
"@crxjs/vite-plugin": "2.0.0-beta.19",
"@types/canvas-confetti": "1.6.4",
"@types/chrome": "0.0.246",
"@types/js-cookie": "3.0.6",
"@types/react": "18.2.66",
"@types/react-dom": "18.2.22",
"@typescript-eslint/eslint-plugin": "7.2.0",
"@typescript-eslint/parser": "7.2.0",
"autoprefixer": "10.4.19",
"esbuild": "0.21.4",
"eslint": "8.57.0",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-react-refresh": "0.4.6",
"husky": "9.0.11",
"postcss": "8.4.38",
"prettier": "3.0.3",
"tailwindcss": "3.4.4",
"ts-unused-exports": "10.1.0",
"typescript": "5.2.2",
"vite": "5.2.0"
}
}