-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.94 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.94 KB
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
{
"name": "pan.dev",
"version": "0.0.0",
"private": true,
"license": "",
"scripts": {
"docusaurus": "docusaurus",
"start": "yarn getAllFeeds && yarn gen-all && docusaurus start",
"build": "run-script-os",
"build:windows": "set NODE_OPTIONS=--max_old_space_size=8192 && yarn gen-all && yarn docusaurus build",
"build:default": "export NODE_OPTIONS=--max_old_space_size=8192 && yarn gen-all && yarn docusaurus build",
"build-github": "export NODE_OPTIONS=--max_old_space_size=96000 && yarn getAllFeeds && yarn gen-all && DOCUSAURUS_PERF_LOGGER=true yarn docusaurus build",
"swizzle": "docusaurus swizzle",
"deploy": "docusaurus deploy",
"clear": "docusaurus clear",
"serve": "docusaurus serve",
"gen-api-docs": "docusaurus gen-api-docs",
"clean-api-docs": "docusaurus clean-api-docs",
"gen-api-docs:version": "docusaurus gen-api-docs:version",
"clean-api-docs:version": "docusaurus clean-api-docs:version",
"gen-all": "docusaurus gen-api-docs all --all-versions",
"clean-all": "docusaurus clean-api-docs all --all-versions",
"re-gen": "yarn clean-all && yarn gen-all",
"getBlogs": "node scripts/feed2json.js https://medium.com/feed/palo-alto-networks-developer-blog > src/components/Medium/blogs.json",
"getHashicorpBlogs": "node scripts/feed2json.js https://www.hashicorp.com/blog/products/terraform/feed.xml > src/components/ProductLandingPage/Feeds/feeds.json",
"getAllFeeds": "yarn --silent getBlogs",
"start:netsec": "cross-env PRODUCTS_INCLUDE=cdss,threat-vault,dns-security,iot,expedition,cloudngfw,cdl,panos,terraform,ansible,splunk,aiops-ngfw-bpa,email-dlp,dlp,prisma-airs,prisma-airs-redteam,prisma-airs-model-security yarn start",
"start:splunk": "cross-env PRODUCTS_INCLUDE=panos,terraform,ansible,splunk yarn start",
"start:iot": "cross-env PRODUCTS_INCLUDE=iot yarn start",
"start:sase": "cross-env PRODUCTS_INCLUDE=sase,access,sdwan,scm yarn start",
"start:cloud": "cross-env PRODUCTS_INCLUDE=prisma-cloud,compute yarn start",
"clean": "yarn clean-all && yarn clear && yarn cache clean && yarn rimraf ./**/node_modules",
"sos": "yarn clean && yarn install",
"format": "prettier --write .",
"format:diff": "prettier --list-different .",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged --allow-empty"
}
},
"lint-staged": {
"*.{js,yaml,yml,json,css,scss}": "prettier --write"
},
"dependencies": {
"@docsearch/react": "^4.6.2",
"@docusaurus/core": "3.10.0",
"@docusaurus/faster": "3.10.0",
"@docusaurus/plugin-client-redirects": "3.10.0",
"@docusaurus/preset-classic": "3.10.0",
"@docusaurus/theme-classic": "3.10.0",
"@docusaurus/theme-mermaid": "3.10.0",
"@tabler/icons-react": "^3.41.1",
"@tailwindcss/postcss": "^4.2.2",
"algoliasearch": "^5.50.2",
"clsx": "^2.1.1",
"docusaurus-plugin-openapi-docs": "5.0.1",
"docusaurus-plugin-sass": "^0.2.2",
"docusaurus-theme-openapi-docs": "5.0.1",
"fast-xml-parser": "^4.5.5",
"motion": "^12.38.0",
"@pandev/plugin-sitemap-coveo": "./plugin-sitemap-coveo",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-responsive": "^10.0.0",
"react-slick": "0.31.0",
"sass": "^1.99.0",
"slick-carousel": "^1.8.1",
"stackdriver-errors-js": "^0.12.0",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.2",
"turndown": "^7.2.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"autoprefixer": "^10.4.27",
"cross-env": "^10.1.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"playwright": "^1.59.1",
"postcss": "^8.5.9",
"postcss-import": "^16.1.1",
"prettier": "3.8.3",
"rimraf": "^6.1.3",
"run-script-os": "^1.1.6",
"xml2js": "^0.6.2"
}
}