forked from AdobeDocs/cc-everywhere
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.43 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
{
"private": true,
"name": "cc-everywhere",
"version": "1.0.0",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/AdobeDocs/cc-everywhere"
},
"author": {
"name": "Stephan Ringel",
"url": "https://github.com/icaraps"
},
"dependencies": {
"@adobe/gatsby-theme-aio": "^4.14.17",
"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",
"build": "gatsby build",
"build:incremental": "GATSBY_EXPERIMENTAL_PAGE_BUILD_ON_DATA_CHANGES=true gatsby build --log-pages",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test:links": "./node_modules/.bin/remark --use remark-validate-links src/pages --quiet --frail",
"test:lint": "./node_modules/.bin/markdownlint --config .github/linters/.markdown-lint.yml src",
"fix:lint": "./node_modules/.bin/markdownlint --config .github/linters/.markdown-lint.yml src --fix"
},
"packageManager": "[email protected]",
"devDependencies": {
"markdownlint": "^0.35.0",
"markdownlint-cli": "^0.41.0",
"remark-cli": "^12.0.1",
"remark-validate-links": "^13.0.1"
}
}