forked from colbyfayock/next-wordpress-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.42 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
{
"name": "next-wordpress-starter",
"homepage": "https://next-wordpress-starter.netlify.app",
"version": "0.1.0",
"license": "MIT",
"author": "Colby Fayock <hello@colbyfayock.com>",
"scripts": {
"build": "next build && next export",
"dev": "next dev",
"format": "yarn prettier --config ./config/prettier.config.js --write .",
"format:nopath": "yarn prettier --config ./config/prettier.config.js --write",
"lint": "yarn prettier --config ./config/prettier.config.js --check .",
"start": "next start"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*": "yarn format:nopath"
},
"dependencies": {
"@apollo/client": "^3.2.5",
"date-fns": "^2.16.1",
"dotenv": "^8.2.0",
"fuse.js": "^6.4.1",
"graphql": "^15.3.0",
"he": "^1.2.0",
"loader-utils": "^2.0.0",
"next": "9.5.5",
"next-compose-plugins": "^2.2.0",
"parameterize": "^1.0.0",
"path": "^0.12.7",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-helmet": "^6.1.0",
"react-icons": "^3.11.0",
"sass": "^1.27.0",
"style.css": "^1.0.0"
},
"devDependencies": {
"husky": ">=4",
"lint-staged": ">=10",
"prettier": "2.1.2"
},
"repository": {
"type": "git",
"url": "https://github.com/colbyfayock/next-wordpress-starter"
},
"bugs": {
"url": "https://github.com/colbyfayock/next-wordpress-starter/issues"
}
}