-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.82 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
{
"name": "gwright170.dev",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"analyze": "ANALYZE=true next build",
"start": "next start",
"typecheck": "tsc --noEmit",
"lint": "next lint",
"prettier:write": "prettier --write \"**/*.{css,md,json,ts,tsx}\"",
"prettier:check": "prettier --check \"**/*.{css,md,json,ts,tsx}\"",
"test": "npm run prettier:check && npm run lint && npm run typecheck"
},
"dependencies": {
"@mantine/core": "^7.1.7",
"@mantine/hooks": "^7.1.7",
"@next/bundle-analyzer": "^14.0.4",
"@tabler/icons-react": "^2.45.0",
"@vercel/analytics": "^1.1.1",
"@vercel/speed-insights": "^1.0.2",
"gray-matter": "^4.0.3",
"markdown-to-jsx": "^7.4.0",
"next": "^14.0.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"shaka-player": "^4.10.10"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@next/eslint-plugin-next": "^14.0.4",
"@types/node": "^20.10.7",
"@types/react": "^18.2.33",
"@typescript-eslint/eslint-plugin": "^6.18.0",
"@typescript-eslint/parser": "^6.18.0",
"autoprefixer": "^10.4.16",
"babel-loader": "^9.1.3",
"eslint": "^8.56.0",
"eslint-config-next": "^14.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-typescript-enum": "^2.1.0",
"postcss": "^8.4.33",
"postcss-preset-mantine": "^1.9.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.1.1",
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.5.11",
"tailwindcss": "^3.4.1",
"typescript": "^5.2.2"
}
}