-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 2.08 KB
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": "openadapt-web",
"version": "1.0.0",
"description": "Official website for OpenAdapt.AI",
"author": "MLDSAI Inc.",
"homepage": "https://openadapt.ai",
"repository": {
"type": "git",
"url": "https://github.com/OpenAdaptAI/openadapt-web"
},
"scripts": {
"dev": "next dev",
"check:versions": "node scripts/check_published_version_claims.mjs",
"fetch:paper": "node scripts/fetch-paper-pdf.js",
"verify:presentations": "node scripts/verify-reference-presentations.mjs",
"prebuild": "npm run fetch:paper && npm test && npm run verify:presentations",
"build": "next build",
"start": "next start -H 127.0.0.1 -p 3000",
"test": "node --test tests/*.test.js",
"export": "next export"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@fortawesome/free-brands-svg-icons": "^6.5.1",
"@fortawesome/free-regular-svg-icons": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@noble/hashes": "2.2.0",
"@tailwindcss/line-clamp": "^0.4.4",
"chart.js": "^4.4.3",
"chartjs-adapter-date-fns": "^3.0.0",
"classnames": "^2.5.1",
"daisyui": "^4.7.2",
"framer-motion": "^11.0.8",
"next": "^15.5.16",
"p5": "^1.9.1",
"posthog-js": "^1.399.2",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.2.0",
"react-fontawesome": "^1.7.1",
"react-json-view-lite": "2.5.0",
"react-slick": "^0.30.2",
"simplex-noise": "^4.0.3",
"stripe": "^16.12.0"
},
"devDependencies": {
"@netlify/plugin-nextjs": "^5.15.12",
"@tailwindcss/typography": "^0.5.9",
"autoprefixer": "^10.4.14",
"cypress": "^15.18.1",
"eslint": "^9.39.5",
"eslint-config-next": "^15.5.16",
"mp4box": "2.4.1",
"postcss": "^8.5.10",
"tailwindcss": "^3.4.1"
},
"overrides": {
"postcss": "$postcss"
}
}