-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 820 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 820 Bytes
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
{
"name": "human-vs-ai",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next build && next export",
"lint": "next lint",
"convert-data": "node src/scripts/convert-to-turing-data.mjs",
"inspect-excel": "node src/scripts/convert-excel-to-js.mjs",
"test:auth": "curl -v http://localhost:3000/api/test-auth",
"test:health": "curl -v http://localhost:3000/api/health"
},
"dependencies": {
"@auth0/nextjs-auth0": "^3.5.0",
"framer-motion": "^12.12.1",
"googleapis": "^140.0.0",
"joi": "^17.13.0",
"next": "^15.5.7",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"xlsx": "^0.18.5"
},
"devDependencies": {
"eslint": "^8",
"eslint-config-next": "^15.5.7"
}
}