-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.42 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 3.42 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
119
120
121
122
{
"name": "robomanipal",
"version": "1.0.0",
"description": "Website for robomanipal.",
"main": "src/index.ts",
"rootDir": "src",
"scripts": {
"test": "mocha --require ts-node/register tests/**/*.ts",
"lint": "eslint --ext .ts src",
"lint:fix": "eslint --ext .ts src --fix",
"prettier": "prettier .",
"prettier:fix": "prettier --write .",
"dev": "next dev",
"build": "next build",
"start": "next start",
"coverage": "nyc npm run test"
},
"pre-commit": [
"lint:fix",
"prettier:fix",
"build",
"test",
"coverage"
],
"keywords": [],
"author": "FallenDeity",
"license": "MIT",
"devDependencies": {
"@next/eslint-plugin-next": "^13.4.9",
"@types/mocha": "^10.0.1",
"@types/node": "^20.2.1",
"@types/react-responsive-masonry": "^2.1.3",
"@types/react-vertical-timeline-component": "^3.3.6",
"@types/three": "^0.160.0",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"autoprefixer": "^10.4.14",
"eslint": "^7.32.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"postcss": "^8.4.24",
"postcss-import": "^16.0.0",
"postcss-nesting": "^12.0.2",
"pre-commit": "^1.2.2",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.3.0",
"tailwindcss": "^3.3.2",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"webpack": "^5.83.1",
"webpack-cli": "^5.1.1"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 4,
"useTabs": true,
"semi": true,
"printWidth": 120,
"bracketSpacing": true,
"bracketSameLine": true
},
"dependencies": {
"@hookform/resolvers": "^3.3.4",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-navigation-menu": "^1.1.4",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@sanity/image-url": "^1.0.2",
"@sanity/vision": "^3.25.0",
"@splinetool/react-spline": "^2.2.6",
"@splinetool/runtime": "^1.0.54",
"@tailwindcss/typography": "^0.5.10",
"@tsparticles/engine": "^3.3.0",
"@tsparticles/react": "^3.0.0",
"@tsparticles/slim": "^3.3.0",
"@types/react": "^18.2.8",
"@vercel/analytics": "^1.2.2",
"@vercel/speed-insights": "^1.0.10",
"class-variance-authority": "^0.6.1",
"clsx": "^1.2.1",
"embla-carousel-autoplay": "^8.0.0-rc19",
"embla-carousel-react": "^8.0.0-rc19",
"framer-motion": "^10.18.0",
"lucide-react": "^0.259.0",
"moment": "^2.30.1",
"next": "^13.4.4",
"next-sanity": "^7.0.10",
"next-themes": "^0.2.1",
"react": "^18.2.0",
"react-day-picker": "^8.10.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.51.3",
"react-icons": "^5.0.1",
"react-responsive-carousel": "^3.2.23",
"react-responsive-masonry": "^2.1.7",
"react-spinners": "^0.13.8",
"react-toastify": "^10.0.5",
"react-vertical-timeline-component": "^3.6.0",
"recoil": "^0.7.7",
"sanity": "^3.25.0",
"sharp": "^0.33.2",
"simplex-noise": "^3.0.1",
"styled-components": "^6.1.8",
"tailwind-merge": "^1.14.0",
"tailwind-scrollbar": "^3.1.0-rc.0",
"tailwind-scrollbar-hide": "^1.1.7",
"tailwindcss-animate": "^1.0.6",
"three": "^0.160.0",
"winston": "^3.9.0",
"zod": "^3.23.3"
}
}