-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.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.1.0",
"@types/autoprefixer": "10.2.4",
"@types/lodash": "4.17.14",
"@types/node": "22.10.5",
"@types/postcss-import": "14.0.3",
"@types/react": "19.0.4",
"@types/react-dom": "19.0.2",
"@types/react-modal": "3.16.3",
"@types/three": "0.172.0",
"@typescript-eslint/eslint-plugin": "8.19.1",
"@typescript-eslint/parser": "8.19.1",
"@vitejs/plugin-react": "4.3.4",
"autoprefixer": "10.4.20",
"eslint": "8.57.1",
"eslint-config-love": "114.0.0",
"eslint-config-next": "15.1.4",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-n": "17.15.1",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-react": "7.37.3",
"jsdom": "26.0.0",
"postcss": "8.4.49",
"postcss-import": "16.1.0",
"prettier": "3.4.2",
"tailwindcss": "3.4.17",
"typescript": "5.7.3",
"vitest": "2.1.8"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20.0.0 <=22.12.0",
"npm": "please-use-yarn",
"yarn": ">=4.4.0"
}
}