-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.54 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
91
92
{
"name": "advokit",
"version": "0.1.0",
"private": false,
"description": "AI-powered tool helping survivors request the removal of non-consensual images",
"repository": {
"type": "git",
"url": "git+https://github.com/chaynHQ/advokit.git"
},
"keywords": [
"image-takedown",
"content-removal",
"privacy",
"ai",
"survivor-support"
],
"author": "Chayn CIO",
"license": "MIT",
"bugs": {
"url": "https://github.com/chaynHQ/advokit/issues"
},
"homepage": "https://github.com/chaynHQ/advokit#readme",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "vitest",
"type-check": "tsc --noEmit",
"format": "prettier --write .",
"prepare": "husky install",
"cypress": "cypress open",
"cypress:headless": "cypress run --browser none --config video=false"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.18.0",
"@babel/runtime": "^7.24.0",
"@next/swc-wasm-nodejs": "13.5.1",
"@next/third-parties": "^15.1.6",
"@radix-ui/react-alert-dialog": "^1.1.1",
"@radix-ui/react-collapsible": "^1.1.0",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-radio-group": "^1.2.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-toast": "^1.2.1",
"@rollbar/react": "^0.11.2",
"@types/node": "20.6.2",
"@types/react": "18.2.22",
"@types/react-dom": "18.2.7",
"autoprefixer": "10.4.15",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"encoding": "^0.1.13",
"eslint": "8.49.0",
"eslint-config-next": "13.5.1",
"framer-motion": "^11.0.8",
"lucide-react": "^0.446.0",
"next": "13.5.1",
"postcss": "8.4.30",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.53.0",
"react-speech-recognition": "^3.10.0",
"regenerator-runtime": "^0.14.1",
"rollbar": "^2.26.3",
"tailwind-merge": "^2.5.2",
"tailwindcss": "3.3.3",
"tailwindcss-animate": "^1.0.7",
"typescript": "5.2.2"
},
"devDependencies": {
"@types/react-speech-recognition": "^3.9.5",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"cypress": "^13.6.6",
"eslint-config-prettier": "^9.1.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"vitest": "^1.3.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml}": [
"prettier --write"
]
}
}