-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.84 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": "thecrittercove",
"homepage": "https://www.thecrittercove.com",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"build": "next build",
"wpe-build": "npm run build",
"dev": "next dev",
"export": "next export",
"format": "yarn lint --fix",
"format:no-path": "yarn lint:no-path --fix",
"lint": "eslint .",
"lint:no-path": "eslint",
"start": "next start -p ${PORT:=3000}",
"prepare": "husky install"
},
"lint-staged": {
"**/*.js": "yarn format:no-path",
"**/*.scss": "yarn prettier --write"
},
"dependencies": {
"@apollo/client": "^3.5",
"aos": "^2.3.4",
"date-fns": "^2.27.0",
"dotenv": "^10.0.0",
"fuse.js": "^6.5.3",
"graphql": "^16.1.0",
"he": "^1.2.0",
"loader-utils": "^3.1.3",
"next": "12.0.7",
"next-compose-plugins": "^2.2.1",
"nextjs-progressbar": "^0.0.13",
"parameterize": "^1.0.0",
"path": "^0.12.7",
"playwright": "^1.17.1",
"react": "17.0.2",
"react-burger-menu": "^3.0.6",
"react-cool-inview": "^2.0.8",
"react-dom": "17.0.2",
"react-helmet": "^6.1.0",
"react-icons": "^4.3.1",
"rehype-parse": "^8.0.3",
"rehype-stringify": "^9.0.2",
"rss": "^1.2.2",
"sass": "^1.45.1",
"unified": "^10.1.1",
"unist-util-visit": "^4.1.0"
},
"devDependencies": {
"@svgr/webpack": "^6.2.0",
"eslint": "7.32.0",
"eslint-config-next": "^12.0.7",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.4",
"lint-staged": ">=12.1.2",
"prettier": "2.4.1"
},
"repository": {
"type": "git",
"url": "https://github.com/colbyfayock/next-wordpress-starter"
},
"bugs": {
"url": "https://github.com/colbyfayock/next-wordpress-starter/issues"
}
}