-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
77 lines (77 loc) · 2.25 KB
/
package.json
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
{
"name": "@example/basics",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"postinstall": "patch-package",
"check:types": "tsc --noEmit",
"check:lint": "eslint --cache \"*.{js,jsx,cjs,mjs,ts,tsx,cts,mts}\" src",
"check:lint:fix": "npm run check:lint --fix",
"check:format": "prettier --check \"*.{js,jsx,cjs,mjs,ts,tsx,cts,mts}\" src",
"check:format:fix": "prettier --write \"*.{js,jsx,cjs,mjs,ts,tsx,cts,mts}\" src",
"check:astro": "astro check",
"check": "npm run check:types && npm run check:lint && npm run check:format && npm run check:astro"
},
"devDependencies": {
"@astrojs/sitemap": "^3.0.3",
"@types/cacache": "^17.0.1",
"@types/lodash-es": "^4.17.10",
"@types/luxon": "^3.3.3",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"astro": "^3.4.3",
"cacache": "^18.0.0",
"cssremedy": "github:jensimmons/cssremedy",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-astro": "^0.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"lodash-es": "^4.17.21",
"luxon": "^3.4.3",
"minimal-promise-pool": "^4.0.0",
"ms": "^2.1.3",
"netlify-cli": "^17.0.1",
"prettier": "^3.0.3",
"prettier-plugin-astro": "^0.12.1",
"trakt.tv": "^8.2.0",
"trakt.tv-images": "^5.2.0",
"type-fest": "^4.6.0",
"unist-util-visit-parents": "^6.0.1",
"zod": "^3.22.4"
},
"dependencies": {
"@astrojs/check": "^0.3.1",
"@astrojs/mdx": "^1.1.3",
"@astrojs/partytown": "^2.0.2",
"@astrojs/react": "^3.0.4",
"@astrojs/rss": "^3.0.0",
"@codesandbox/sandpack-react": "^2.9.0",
"@linaria/babel-preset": "^5.0.3",
"@linaria/core": "^5.0.2",
"@linaria/react": "^5.0.3",
"@linaria/vite": "^5.0.3",
"@netlify/functions": "^2.3.0",
"astro-compress": "^2.2.2",
"chromium": "^3.0.3",
"mafs": "^0.17.1",
"mathjs": "^12.0.0",
"patch-package": "^8.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-math-keyboard": "^1.4.2",
"tex-math-parser": "^2.0.4",
"typescript": "^5.2.2"
},
"volta": {
"node": "20.18.0"
}
}