-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.15 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.15 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
{
"private": true,
"name": "cloudmanager-api-docs",
"version": "1.0.0",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/AdobeDocs/cloudmanager-api-docs"
},
"author": {
"name": "Justin Edelson",
"url": "https://github.com/justinedelson"
},
"dependencies": {
"@adobe/gatsby-theme-aio": "^4.14.7",
"@emotion/react": "11.8.2",
"@spectrum-css/buttongroup": "3.0.10",
"@spectrum-css/fieldlabel": "4.0.17",
"axios": "0.30.0",
"classnames": "2.3.1",
"gatsby": "4.22.0",
"gatsby-plugin-emotion": "^7.23.0",
"gatsby-plugin-static-folders": "1.0.1",
"history": "5.3.0",
"lodash.debounce": "4.0.8",
"lodash.uniq": "4.5.0",
"lodash.uniqueid": "4.0.1",
"os-browserify": "0.3.0",
"patch-package": "6.4.7",
"postinstall-postinstall": "2.1.0",
"prop-types": "15.8.1",
"qs": "6.10.3",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-safe": "1.3.0",
"tty-browserify": "0.0.1",
"uritemplate": "0.3.4"
},
"devDependencies": {
"@babel/core": "7.17.5",
"@babel/preset-env": "7.16.11",
"@emotion/eslint-plugin": "11.7.0",
"babel-jest": "27.5.1",
"eslint": "8.11.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jest": "26.1.1",
"eslint-plugin-jsdoc": "40.1.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-react": "7.29.3",
"eslint-plugin-react-hooks": "4.3.0",
"jest": "27.5.1",
"jest-junit": "13.0.0",
"js-yaml": "4.1.0",
"remark-cli": "^11.0.0",
"remark-validate-links": "^12.1.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 443",
"dev:https:stage": "gatsby develop --https --host developer-stage.adobe.com --port 443",
"dev:https:prod": "gatsby develop --https --host www.adobe.io --port 443",
"dev:debug": "node --nolazy node_modules/.bin/gatsby develop --inspect-brk",
"build": "npx copyfiles -f swagger-specs/* static && gatsby build",
"build:test": "yarn run lint && yarn run test && npx copyfiles -f swagger-specs/* static && gatsby build",
"build:incremental": "GATSBY_EXPERIMENTAL_PAGE_BUILD_ON_DATA_CHANGES=true gatsby build --log-pages",
"serve": "gatsby serve",
"clean": "gatsby clean",
"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",
"postinstall": "patch-package",
"test": "jest --config test/jest.config.js",
"test:links": "remark src/pages --quiet --frail",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand --config test/jest.config.js"
},
"engines": {
"node": ">=20.11.1"
},
"remarkConfig": {
"plugins": [
"remark-validate-links"
]
},
"overrides": {
"axios": "0.30.0"
},
"resolutions": {
"axios": "0.30.0",
"sharp": "0.33.0",
"gatsby-sharp": "1.12.0"
},
"packageManager": "yarn@3.2.2"
}