-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.74 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.74 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
{
"name": "shapeshift",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "eslint . --cache",
"lint:fix": "eslint . --cache --fix",
"deadcode": "ts-prune | grep -v 'page\\.tsx\\|loading\\.tsx\\|layout\\.tsx'",
"release": "bun scripts/release.ts"
},
"dependencies": {
"@headlessui/react": "^2.2.0",
"@types/semver": "^7.7.0",
"framer-motion": "^12.0.6",
"highlight.js": "^11.11.1",
"katex": "^0.16.21",
"motion": "^12.4.7",
"next": "^15.1.9",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^9.0.3",
"react-paginate": "^8.3.0",
"react-weglot": "^1.0.4",
"rehype-highlight": "^7.0.2",
"rehype-katex": "^7.0.1",
"remark-emoji": "^5.0.1",
"remark-footnotes": "^5.0.0",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"semver": "^7.7.2",
"typescript-eslint": "^8.19.1",
"usehooks-ts": "^3.1.1"
},
"devDependencies": {
"@types/inquirer": "8.2.10",
"@types/node": "^20",
"@types/pify": "^5.0.4",
"@types/react": "^18",
"@types/react-dom": "^18",
"chalk": "^4.1.2",
"eslint": "^9.17.0",
"eslint-config-next": "^14.2.3",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-brackets": "^0.1.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-tailwindcss": "^3.17.5",
"eslint-plugin-unused-imports": "^4.1.4",
"inquirer": "^8.2.6",
"pify": "^5.0.0",
"postcss": "^8",
"postcss-nesting": "^13.0.1",
"prettier": "^3.3.2",
"simple-git": "^3.27.0",
"tailwindcss": "^3.4.1",
"ts-prune": "^0.10.3",
"typescript": "^5"
}
}