-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.89 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.89 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "quantum-graph-website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -H 0.0.0.0 --turbopack",
"build": "next build",
"export": "next export",
"start": "next start",
"lint": "npx tsc --noEmit && next lint",
"format": "npx biome format --write",
"predeploy": "npm run build",
"deploy": "gh-pages -d out --dotfiles",
"build:production": "cross-env NODE_OPTIONS='--max-old-space-size=4096' next build",
"build:static": "rm -rf .next out && cross-env NODE_OPTIONS='--max-old-space-size=4096' next build",
"build:clean": "rm -rf .next out node_modules/.cache && npm run build:static",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:unit": "jest tests/unit",
"test:integration": "jest tests/integration",
"test:performance": "jest tests/performance",
"test:accessibility": "jest tests/accessibility",
"test:responsive": "jest tests/responsive",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:all": "npm run test:coverage && npm run test:e2e",
"test:ci": "npm run test:coverage && npm run test:e2e --reporter=github"
},
"dependencies": {
"@emotion/is-prop-valid": "^1.4.0",
"@react-three/drei": "^9.114.0",
"@react-three/fiber": "^8.17.10",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^12.23.12",
"lucide-react": "^0.475.0",
"next": "^15.3.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.5.0",
"tailwind-merge": "^3.3.0",
"tailwindcss-animate": "^1.0.7",
"three": "^0.179.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@eslint/eslintrc": "^3.3.1",
"@next/swc-linux-x64-gnu": "^15.5.3",
"@playwright/test": "^1.40.0",
"@swc/jest": "^0.2.29",
"@testing-library/jest-dom": "^6.1.0",
"@testing-library/react": "^14.1.0",
"@testing-library/user-event": "^14.5.0",
"@types/jest": "^29.5.0",
"@types/node": "^20.17.50",
"@types/react": "^18.3.22",
"@types/react-dom": "^18.3.7",
"@types/three": "^0.179.0",
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
"eslint": "^9.27.0",
"eslint-config-next": "15.1.7",
"gh-pages": "^6.3.0",
"jest": "^29.7.0",
"jest-axe": "^8.0.0",
"jest-environment-jsdom": "^29.7.0",
"jest-extended": "^4.0.2",
"jest-html-reporters": "^3.1.7",
"postcss": "^8.5.3",
"tailwindcss": "^3.4.17",
"typescript": "^5.8.3"
}
}