forked from AdobeDocs/ff-services-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 2.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
{
"private": true,
"name": "dev-site-documentation-template",
"version": "1.0.0",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/AdobeDocs/dev-site-documentation-template"
},
"author": {
"name": "Stephan Ringel",
"url": "https://github.com/icaraps"
},
"dependencies": {
"@adobe/gatsby-theme-aio": "^4.11.8-rc3",
"cis-lightroom-api": "github:adobedocs/cis-photoshop-api-docs#lr_docs",
"cis-photoshop-api": "github:adobedocs/cis-photoshop-api-docs#sudipta/summitPS",
"firefly-api-docs": "github:adobedocs/firefly-api-docs",
"gatsby": "4.22.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"resolutions": {
"sharp": "0.33.0",
"gatsby-sharp": "1.12.0"
},
"scripts": {
"start": "gatsby build && gatsby serve",
"start:prefix": "gatsby build --prefix-paths && gatsby serve --prefix-paths",
"dev": "gatsby develop",
"dev:https": "gatsby develop --https --host localhost.corp.adobe.com --port 9000",
"_copy_firefly_docs": "rm -rf src/pages/firefly-api && cp -r node_modules/firefly-api-docs/src/pages src/pages/firefly-api && cp -r node_modules/firefly-api-docs/static/. ./static/",
"_copy_cis_photoshop_docs": "rm -rf src/pages/photoshop && cp -r node_modules/cis-photoshop-api/src/pages src/pages/photoshop && cp -r node_modules/cis-photoshop-api/static/. ./static/",
"_copy_cis_lightroom_docs": "rm -rf src/pages/lightroom && cp -r node_modules/cis-lightroom-api/src/pages src/pages/lightroom && cp -r node_modules/cis-lightroom-api/static/. ./static/",
"_copy_docs": "npm run _copy_cis_photoshop_docs && npm run _copy_cis_lightroom_docs && npm run _copy_firefly_docs",
"prepare-docs": "npm run _copy_docs",
"prebuild": "npm run prepare-docs",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test:links": "remark src/pages --quiet --frail",
"lint": "docker run --rm -e RUN_LOCAL=true --env-file '.github/super-linter.env' -v \"$PWD\":/tmp/lint github/super-linter:slim-v4.10.1"
},
"remarkConfig": {
"plugins": [
"remark-validate-links"
]
},
"packageManager": "[email protected]",
"devDependencies": {
"remark-cli": "^11.0.0",
"remark-validate-links": "^12.1.0"
}
}