-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
67 lines (67 loc) · 1.86 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
{
"name": "next-website-v2",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"check:types": "yarn tsc",
"check:format": "yarn prettier --check .",
"format": "yarn prettier --write .",
"lint": "next lint",
"test": "vitest"
},
"dependencies": {
"@radix-ui/colors": "^3.0.0",
"@radix-ui/react-navigation-menu": "^1.2.3",
"@radix-ui/themes": "^3.1.6",
"classnames": "^2.5.1",
"lodash": "^4.17.21",
"next": "15.0.4",
"react": "19.0.0",
"react-countup": "^6.5.3",
"react-dom": "19.0.0",
"react-icons": "^5.4.0",
"react-markdown": "^9.0.3",
"react-modal": "^3.16.3",
"sharp": "^0.33.5"
},
"devDependencies": {
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.2.0",
"@types/autoprefixer": "10.2.4",
"@types/lodash": "4.17.16",
"@types/node": "22.13.10",
"@types/postcss-import": "14.0.3",
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"@types/react-modal": "3.16.3",
"@types/three": "0.174.0",
"@typescript-eslint/eslint-plugin": "8.26.1",
"@typescript-eslint/parser": "8.26.1",
"@vitejs/plugin-react": "4.3.4",
"autoprefixer": "10.4.21",
"eslint": "8.57.1",
"eslint-config-love": "117.0.0",
"eslint-config-next": "15.2.1",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-n": "17.16.2",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-react": "7.37.4",
"jsdom": "26.0.0",
"postcss": "8.5.3",
"postcss-import": "16.1.0",
"prettier": "3.5.3",
"tailwindcss": "3.4.17",
"typescript": "5.8.2",
"vitest": "3.0.8"
},
"packageManager": "yarn@4.7.0",
"engines": {
"node": ">=20.0.0 <=22.14.0",
"npm": "please-use-yarn",
"yarn": ">=4.4.0"
}
}