generated from ChrisCrossCrash/next-js-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.62 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
{
"name": "nextjs-blog",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write .",
"cypress:open": "cypress open",
"cypress:run-e2e": "cypress run",
"cypress:run-component": "cypress run --component",
"prepare": "husky install"
},
"dependencies": {
"@chris-cross-crash/ck-css": "^2.0.5",
"@fontsource/inter": "^5.0.16",
"@fontsource/metropolis": "^5.0.7",
"@react-three/drei": "^9.96.1",
"@react-three/fiber": "^8.15.14",
"depth-section": "^0.17.1",
"formik": "^2.4.5",
"lint-staged": "^15.2.0",
"modern-normalize": "^2.0.0",
"next": "^14.1.0",
"openai": "^4.25.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-google-recaptcha": "^3.1.0",
"react-intersection-observer": "^9.5.3",
"react-markdown": "^9.0.1",
"remark-gfm": "^4.0.0",
"sass": "^1.70.0",
"sharp": "^0.33.2",
"three": "^0.160.1",
"yup": "^1.3.3"
},
"devDependencies": {
"@types/node": "^20.11.5",
"@types/react": "^18.2.48",
"@types/react-google-recaptcha": "^2.1.8",
"@types/three": "^0.160.0",
"cypress": "^13.6.3",
"eslint": "^8.56.0",
"eslint-config-next": "^14.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-cypress": "^2.15.1",
"husky": "^8.0.3",
"prettier": "^3.2.4",
"typescript": "^5.3.3",
"typescript-plugin-css-modules": "^5.0.2"
},
"lint-staged": {
"*.md,html,css,scss": "prettier --write",
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --cache"
]
}
}