This repository has been archived by the owner on Feb 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 129
/
package.json
101 lines (101 loc) · 3.24 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@webdevstudios/nextjs-wordpress-starter",
"version": "1.0.0",
"private": true,
"description": "Next.js WordPress Starter",
"author": "WebDevStudios <[email protected]>",
"license": "GPL-2.0-or-later",
"keywords": [
"next.js",
"wordpress"
],
"homepage": "https://github.com/WebDevStudios/nextjs-wordpress-starter/blob/main/README.md",
"repository": {
"type": "git",
"url": "https://github.com/WebDevStudios/nextjs-wordpress-starter/tree/main/frontend"
},
"bugs": {
"url": "https://github.com/WebDevStudios/nextjs-wordpress-starter/issues"
},
"engines": {
"npm": ">=8"
},
"scripts": {
"analyze": "ANALYZE=true npm run build",
"build": "next build",
"build-storybook": "build-storybook",
"clean": "rimraf .next/",
"dev": "npm run clean && next dev",
"develop": "npm dev",
"export": "next export",
"format": "npx prettier '**/*.{js,jsx,ts,tsx,md,html,css,scss,json,yml}' --write || true",
"lint": "npm run format && npm run lint:js && npm run lint:css && npm run lint:md",
"lint:css": "npx stylelint '**/*.css' --fix || true",
"lint:js": "npx eslint '**/*.{js,ts,jsx,tsx}' --fix || true && next lint",
"lint:md": "npx markdownlint '**/*.md' --fix || true",
"postbuild": "next-sitemap",
"start": "next start",
"storybook": "start-storybook -p 6006",
"test:jest": "jest"
},
"dependencies": {
"@apollo/client": "^3.5.10",
"@next/bundle-analyzer": "^12.1.5",
"algoliasearch": "^4.13.1",
"apollo-link-rest": "^0.8.0",
"dayjs": "^1.10.8",
"deepmerge": "^4.2.2",
"formidable": "^2.0.1",
"formik": "^2.2.9",
"graphql": "^16.3.0",
"graphql-anywhere": "^4.2.7",
"html-react-parser": "^1.4.8",
"next": "12.1.5",
"next-auth": "^4.6.1",
"next-connect": "^0.12.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-instantsearch-dom": "^6.29.0",
"react-is": "^18.2.0",
"react-syntax-highlighter": "^15.4.5",
"react-twitter-embed": "^4.0.4",
"rimraf": "^3.0.2",
"tailwindcss": "^3.1.4",
"yup": "^0.32.11"
},
"devDependencies": {
"@arkweid/lefthook": "^0.7.7",
"@babel/core": "^7.17.5",
"@storybook/addon-a11y": "^6.4.22",
"@storybook/addon-essentials": "^6.4.22",
"@storybook/addon-links": "^6.4.22",
"@storybook/builder-webpack5": "^6.4.22",
"@storybook/manager-webpack5": "^6.4.22",
"@storybook/react": "^6.4.22",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.5",
"autoprefixer": "^10.4.2",
"babel-jest": "^27.5.1",
"babel-loader": "^8.2.3",
"eslint": "^8.10.0",
"eslint-config-next": "^12.1.5",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-jsdoc": "^39.2.3",
"eslint-plugin-prettier": "^4.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.5.1",
"markdownlint": "^0.25.1",
"markdownlint-cli": "^0.31.1",
"next-sitemap": "^2.5.20",
"postcss": "^8.4.7",
"postcss-flexbugs-fixes": "5.0.2",
"postcss-preset-env": "^7.4.3",
"prettier": "^2.5.1",
"prop-types": "^15.8.1",
"sharp": "^0.30.6",
"storybook-css-modules-preset": "^1.1.1",
"stylelint": "^14.9.1",
"stylelint-config-standard": "^25.0.0"
}
}