-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
53 lines (53 loc) · 1.41 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
{
"name": "lyonjs-website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next export",
"lint": "oxlint",
"fmt": "prettier --write './**/*.js' './**/*.ts' './**/*.tsx'",
"fmt:check": "prettier --check './**/*.js' './**/*.ts' './**/*.tsx'",
"prepare": "husky",
"e2e": "playwright test"
},
"dependencies": {
"@next/mdx": "14.2.17",
"@vercel/analytics": "^1.3.1",
"@vercel/speed-insights": "^1.0.12",
"dayjs": "^1.11.13",
"lodash": "^4.17.21",
"motion": "^10.18.0",
"next": "14.2.17",
"normalize.css": "8.0.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-markdown": "^9.0.1",
"sharp": "^0.33.5",
"yet-another-react-lightbox": "^3.21.4"
},
"devDependencies": {
"@playwright/test": "1.48.1",
"@types/lodash": "^4.17.7",
"@types/node": "20.17.6",
"@types/react": "18.3.11",
"@types/react-dom": "18.3.1",
"autoprefixer": "^10.4.20",
"classnames": "2.5.1",
"encoding": "^0.1.13",
"eslint": "9.10.0",
"eslint-config-next": "14.2.17",
"eslint-config-prettier": "9.1.0",
"graphql": "^16.9.0",
"graphql-request": "^7.1.0",
"husky": "^9.0.0",
"oxlint": "^0.11.0",
"postcss": "^8.4.41",
"prettier": "3.3.3",
"pretty-quick": "^4.0.0",
"tailwindcss": "^3.4.10",
"typescript": "5.6.3"
}
}