-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 4.67 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 4.67 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "lenr-academy",
"private": true,
"version": "0.1.0-alpha.24",
"type": "module",
"scripts": {
"postinstall": "node scripts/postinstall.js",
"dev": "vite",
"build": "tsc && vite build && node scripts/generate-version-json.js",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"serve": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"test:e2e:chromium": "playwright test --project=chromium",
"test:e2e:report": "playwright show-report",
"screenshots": "tsx scripts/generate-screenshots.ts",
"screenshots:update": "npm run screenshots",
"screenshots:pr": "tsx scripts/generate-pr-screenshots.ts",
"screenshots:helper": "tsx scripts/screenshot-helper.ts",
"screenshots:helper:ai": "tsx scripts/screenshot-helper-ai.ts",
"fetch:iaea": "node scripts/fetch-iaea-abundances.cjs",
"db:upload": "bash -c 'scripts/upload-db.sh \"${npm_config_version:-${VERSION}}\"'",
"db:download": "bash scripts/download-db.sh",
"db:index": "bash scripts/generate-db-index.sh && npm run db:invalidate",
"db:uncache": "aws cloudfront create-invalidation --distribution-id E2HHYQ6QJH13V0 --paths '/*'",
"deploy": "npm run deploy:s3 && npm run deploy:uncache",
"deploy:s3": "aws s3 sync ./dist s3://lenr.academy",
"deploy:uncache": "aws cloudfront create-invalidation --distribution-id ET0385Q49O8YX --paths '/*'",
"deploy:beta": "npm run deploy:beta:s3 && npm run deploy:beta:uncache",
"deploy:beta:s3": "aws s3 sync ./dist s3://beta.lenr.academy --delete",
"deploy:beta:uncache": "aws cloudfront create-invalidation --distribution-id ETEMDF97HIHYZ --paths '/*'",
"deploy:staging": "npm run deploy:staging:s3 && npm run deploy:staging:uncache",
"deploy:staging:s3": "aws s3 sync ./dist s3://staging.lenr.academy",
"deploy:staging:uncache": "aws cloudfront create-invalidation --distribution-id EFGA1FI82OWV5 --paths '/*'",
"release:patch": "bash scripts/release.sh patch",
"release:minor": "bash scripts/release.sh minor",
"release:major": "bash scripts/release.sh major",
"release:alpha": "bash scripts/release.sh prerelease alpha",
"release:beta": "bash scripts/release.sh prerelease beta",
"release:upload-db": "gh release upload $(git describe --tags --abbrev=0) public/parkhomov.db --clobber"
},
"dependencies": {
"@react-three/drei": "^9.122.0",
"@react-three/fiber": "^8.18.0",
"@sentry/react": "^10.19.0",
"d3-drag": "^3.0.0",
"d3-ease": "^3.0.1",
"d3-force": "^3.0.0",
"d3-selection": "^3.0.0",
"d3-transition": "^3.0.1",
"d3-zoom": "^3.0.0",
"i18next": "^25.6.0",
"i18next-browser-languagedetector": "^8.2.0",
"jspdf": "^4.2.0",
"jspdf-autotable": "^5.0.7",
"katex": "^0.16.45",
"lucide-react": "^0.292.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^16.2.4",
"react-markdown": "^9.0.3",
"react-router-dom": "^6.20.0",
"react-virtualized": "^9.22.6",
"react-zoom-pan-pinch": "^3.7.0",
"recharts": "^2.10.3",
"remark-gfm": "^4.0.0",
"remark-github": "^12.0.0",
"sql.js": "^1.13.0",
"three": "^0.183.1"
},
"devDependencies": {
"@axe-core/playwright": "^4.10.2",
"@playwright/test": "^1.56.0",
"@sentry/vite-plugin": "^4.3.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/d3-drag": "^3.0.7",
"@types/d3-ease": "^3.0.2",
"@types/d3-force": "^3.0.10",
"@types/d3-selection": "^3.0.11",
"@types/d3-transition": "^3.0.9",
"@types/d3-zoom": "^3.0.8",
"@types/katex": "^0.16.8",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@types/react-virtualized": "^9.22.3",
"@types/sql.js": "^1.4.9",
"@types/three": "^0.183.1",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/ui": "^4.0.2",
"autoprefixer": "^10.4.16",
"eslint": "^8.55.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"fake-indexeddb": "^6.2.5",
"jsdom": "^27.0.1",
"postcss": "^8.4.32",
"tailwindcss": "^3.3.6",
"tsx": "^4.20.6",
"typescript": "^5.2.2",
"vite": "^5.0.8",
"vite-plugin-pwa": "^1.1.0",
"vitest": "^4.0.2",
"workbox-window": "^7.3.0"
},
"overrides": {
"mdast-util-gfm-autolink-literal": "2.0.0"
}
}