forked from colbyfayock/next-wordpress-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.98 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
68
69
{
"name": "bl_portfolio",
"homepage": "https://benedict.lang-familie.de",
"version": "0.2.0",
"license": "MIT",
"author": "Benedict Lang <hello@lang-familie.de>",
"scripts": {
"build": "next build",
"dev": "next dev",
"format": "pnpm lint --fix",
"format:no-path": "pnpm lint:no-path --fix",
"lint": "eslint .",
"lint:no-path": "eslint",
"start": "next start -p ${PORT:=3000}",
"prepare": "pnpm husky install"
},
"lint-staged": {
"**/*.js": "pnpm format:no-path",
"**/*.scss": "pnpm prettier --write"
},
"dependencies": {
"@apollo/client": "^3.10.8",
"@react-three/drei": "^9.109.5",
"@react-three/fiber": "^8.17.5",
"@react-three/postprocessing": "^2.16.2",
"autoprefixer": "^10.4.20",
"dat.gui": "^0.7.9",
"date-fns": "^3.6.0",
"dotenv": "^16.4.5",
"fuse.js": "^7.0.0",
"graphql": "^16.9.0",
"he": "^1.2.0",
"howler": "^2.2.4",
"loader-utils": "^3.3.1",
"next": "14.2.4",
"nextjs-progressbar": "^0.0.16",
"parameterize": "^1.0.0",
"path": "^0.12.7",
"postcss": "^8.4.41",
"prop-types": "^15.8.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-helmet": "^6.1.0",
"react-icons": "^5.2.1",
"rss": "^1.2.2",
"sass": "^1.77.8",
"tailwindcss": "^3.4.9",
"three": "^0.167.1"
},
"devDependencies": {
"eslint": "8.57.0",
"eslint-config-next": "^14.2.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"husky": "^9.1.4",
"lint-staged": "^15.2.7",
"playwright": "^1.46.0",
"prettier": "3.3.3"
},
"repository": {
"type": "git",
"url": "https://github.com/colbyfayock/next-wordpress-starter"
},
"bugs": {
"url": "https://github.com/colbyfayock/next-wordpress-starter/issues"
},
"packageManager": "pnpm@9.6.0+sha512.38dc6fba8dba35b39340b9700112c2fe1e12f10b17134715a4aa98ccf7bb035e76fd981cf0bb384dfa98f8d6af5481c2bef2f4266a24bfa20c34eb7147ce0b5e"
}