-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.9 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
{
"name": "isisneutronmuon.github.io",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"createRadarJson": "ts-node --cwd ./scripts/createRadarJson.ts",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"tsc": "tsc --noEmit",
"test:unit": "jest",
"component:headless": "cypress run --component",
"e2e:headless": "start-server-and-test dev http://localhost:3000 \"cypress run --e2e\""
},
"dependencies": {
"@mdx-js/loader": "^3.1.1",
"@mdx-js/react": "^3.1.1",
"@next/mdx": "^16.2.9",
"@octokit/rest": "^22.0.1",
"@tailwindcss/postcss": "^4.3.1",
"@tailwindcss/typography": "^0.5.20",
"@tanstack/match-sorter-utils": "^8.8.4",
"@tanstack/react-table": "^8.10.7",
"@types/js-yaml": "^4.0.6",
"@types/mdx": "^2.0.14",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"d3": "^7.8.5",
"gray-matter": "^4.0.3",
"next": "16.2.9",
"react": "19.2.7",
"react-dom": "19.2.7",
"rehype-sanitize": "^6.0.0",
"rehype-stringify": "^10.0.0",
"remark": "^15.0.1",
"remark-frontmatter": "^5.0.0",
"remark-mdx-frontmatter": "^5.2.0",
"remark-rehype": "^11.0.0",
"tailwindcss": "^4.3.0",
"typescript": "6.0.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^16.3.2",
"@types/d3": "^7.4.1",
"@types/jest": "^30.0.0",
"@types/node": "^25.9.4",
"cypress": "^15.18.0",
"eslint": "^10.5.0",
"eslint-config-next": "^16.2.9",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.4.1",
"serve": "^14.2.1",
"start-server-and-test": "^3.0.11",
"ts-jest": "^29.4.11",
"ts-node": "^10.9.2",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.0/xlsx-0.20.0.tgz"
},
"postcss": {
"plugins": {
"@tailwindcss/postcss": {}
}
}
}