forked from TryGhost/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.59 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
102
{
"name": "docs",
"version": "1.0.0",
"description": "Documentation for the Ghost publishing platform",
"repository": "[email protected]:TryGhost/docs.git",
"author": "Ghost Foundation",
"license": "MIT",
"main": "app.js",
"scripts": {
"serve": "gatsby build && NODE_ENV=production gatsby serve",
"build": "gatsby build",
"dev": "netlify dev",
"lint": "eslint . --ext .js --cache",
"posttest": "yarn lint",
"cy:open": "cypress open",
"cy:run": "cypress run",
"test:e2e": "start-server-and-test dev http://localhost:8000 cy:open",
"test:e2e:ci": "start-server-and-test dev http://localhost:8000 cy:run",
"test": "NODE_ENV=testing mocha -- $(find test -name '*.test.js') && yarn test:e2e:ci",
"preship": "yarn test",
"ship": "STATUS=$(git status --porcelain); echo $STATUS; if [ -z \"$STATUS\" ]; then yarn version && git push --follow-tags; fi",
"master": "git pull -r origin master --autostash && cd content/bdm && git pull -r origin master --autostash && cd ../../../ && yarn"
},
"devDependencies": {
"@testing-library/cypress": "7.0.5",
"@tryghost/admin-api": "1.4.0",
"@tryghost/content-api": "1.5.1",
"autoprefixer": "9.6.0",
"cssnano": "4.1.10",
"cypress": "6.8.0",
"eslint": "7.23.0",
"eslint-plugin-ghost": "2.0.0",
"eslint-plugin-react": "7.23.1",
"gatsby-cli": "^3.2.0",
"ghost-spirit": "0.0.50",
"mocha": "8.3.2",
"postcss-color-mod-function": "3.0.3",
"postcss-css-variables": "0.13.0",
"postcss-custom-media": "7.0.8",
"postcss-custom-properties": "8.0.10",
"postcss-easy-import": "3.0.0",
"should": "13.2.3",
"sinon": "10.0.0",
"start-server-and-test": "1.12.1"
},
"dependencies": {
"@tryghost/helpers": "^1.1.6",
"@tryghost/helpers-gatsby": "1.0.45",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"algolia-html-extractor": "0.0.1",
"gatsby": "3.14",
"gatsby-image": "3.2.0",
"gatsby-plugin-advanced-sitemap": "1.1.1",
"gatsby-plugin-catch-links": "3.2.0",
"gatsby-plugin-force-trailing-slashes": "1.0.5",
"gatsby-plugin-google-gtag": "3.13.0",
"gatsby-plugin-lunr": "^1.5.1",
"gatsby-plugin-manifest": "3.2.0",
"gatsby-plugin-offline": "4.2.0",
"gatsby-plugin-postcss": "2.0.7",
"gatsby-plugin-react-helmet": "4.2.0",
"gatsby-plugin-react-svg": "3.0.0",
"gatsby-plugin-remove-serviceworker": "1.0.0",
"gatsby-plugin-sharp": "3.2.0",
"gatsby-plugin-static-folders": "^1.0.1",
"gatsby-remark-autolink-headers": "3.2.0",
"gatsby-remark-code-titles": "1.1.0",
"gatsby-remark-copy-linked-files": "4.2.0",
"gatsby-remark-embed-snippet": "5.2.0",
"gatsby-remark-external-links": "0.0.4",
"gatsby-remark-images": "4.2.0",
"gatsby-remark-prismjs": "^4.2.0",
"gatsby-remark-responsive-iframe": "^3.2.0",
"gatsby-source-filesystem": "3.2.0",
"gatsby-source-ghost": "4.2.3",
"gatsby-source-graphql": "^2.1.11",
"gatsby-transformer-remark": "^3.2.0",
"gatsby-transformer-sharp": "3.2.0",
"gatsby-transformer-yaml": "3.2.0",
"jquery": "^3.4.1",
"jsroot": "^6.2.1",
"katex": "^0.15.0",
"notebookjs": "^0.6.6",
"path-browserify": "1.0.1",
"prismjs": "^1.23.0",
"react": "^17.0.2",
"react-autosuggest": "10.1.0",
"react-dom": "^17.0.2",
"react-helmet": "6.1.0",
"react-modal": "3.12.1",
"react-slick": "^0.28.1",
"requirejs": "^2.3.6",
"sanitize-html": "^2.4.0",
"sass": "^1.43.4",
"slick-carousel": "^1.8.1",
"strip-markdown": "^4.0.0",
"tocbot": "4.12.2",
"vfile": "^5.0.2",
"yarn": "^1.16.0"
}
}