-
Notifications
You must be signed in to change notification settings - Fork 292
/
package.json
60 lines (60 loc) · 1.59 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": "next-wordpress-starter",
"homepage": "https://next-wordpress-starter.spacejelly.dev",
"version": "0.1.0",
"license": "MIT",
"author": "Colby Fayock <[email protected]>",
"scripts": {
"build": "next build",
"dev": "next dev",
"export": "next export",
"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": "husky install"
},
"lint-staged": {
"**/*.js": "pnpm format:no-path",
"**/*.scss": "pnpm prettier --write"
},
"dependencies": {
"@apollo/client": "^3.7.14",
"date-fns": "^2.30.0",
"dotenv": "^16.0.3",
"fuse.js": "^6.6.2",
"graphql": "^16.6.0",
"he": "^1.2.0",
"loader-utils": "^3.2.1",
"next": "13.4.0",
"nextjs-progressbar": "^0.0.16",
"parameterize": "^1.0.0",
"path": "^0.12.7",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-helmet": "^6.1.0",
"react-icons": "^4.8.0",
"rss": "^1.2.2",
"sass": "^1.62.1",
"style.css": "^1.0.3"
},
"devDependencies": {
"eslint": "8.39.0",
"eslint-config-next": "^13.4.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"playwright": "^1.33.0",
"prettier": "2.8.8"
},
"repository": {
"type": "git",
"url": "https://github.com/colbyfayock/next-wordpress-starter"
},
"bugs": {
"url": "https://github.com/colbyfayock/next-wordpress-starter/issues"
}
}