forked from TryGhost/docs-old
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.94 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.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
{
"name": "docs",
"version": "1.0.0",
"description": "Documentation for the Ghost publishing platform",
"repository": "git@github.com:TryGhost/docs.git",
"author": "Ghost Foundation",
"license": "MIT",
"main": "app.js",
"scripts": {
"serve": "gatsby build && NODE_ENV=production gatsby serve",
"build": "gatsby build",
"dev": "gatsby develop",
"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/api/v2 && git pull -r origin master --autostash && cd ../../../ && yarn"
},
"devDependencies": {
"algoliasearch": "3.32.1",
"autoprefixer": "9.5.0",
"cssnano": "4.1.10",
"cypress": "3.1.5",
"cypress-testing-library": "2.3.6",
"eslint": "5.15.1",
"eslint-plugin-ghost": "0.2.0",
"eslint-plugin-react": "7.12.4",
"ghost-spirit": "0.0.50",
"mocha": "6.0.2",
"postcss-color-mod-function": "3.0.3",
"postcss-css-variables": "0.12.0",
"postcss-custom-media": "7.0.7",
"postcss-custom-properties": "8.0.9",
"postcss-easy-import": "3.0.0",
"should": "13.2.3",
"sinon": "7.2.7",
"start-server-and-test": "1.7.11"
},
"dependencies": {
"@tryghost/helpers": "1.1.0",
"@tryghost/helpers-gatsby": "1.0.2",
"algolia-html-extractor": "0.0.1",
"gatsby": "2.1.34",
"gatsby-image": "2.0.33",
"gatsby-plugin-advanced-sitemap": "1.0.4",
"gatsby-plugin-algolia": "0.3.0",
"gatsby-plugin-catch-links": "2.0.13",
"gatsby-plugin-force-trailing-slashes": "1.0.4",
"gatsby-plugin-manifest": "2.0.24",
"gatsby-plugin-offline": "2.0.25",
"gatsby-plugin-postcss": "2.0.6",
"gatsby-plugin-react-helmet": "3.0.9",
"gatsby-plugin-react-svg": "2.1.0",
"gatsby-plugin-remove-serviceworker": "1.0.0",
"gatsby-plugin-sharp": "2.0.28",
"gatsby-remark-autolink-headers": "2.0.16",
"gatsby-remark-code-titles": "1.1.0-rc.0",
"gatsby-remark-embed-snippet": "3.2.4",
"gatsby-remark-external-links": "0.0.4",
"gatsby-remark-images": "3.0.9",
"gatsby-remark-prismjs": "3.2.5",
"gatsby-source-filesystem": "2.0.26",
"gatsby-source-ghost": "3.3.0",
"gatsby-transformer-remark": "2.3.4",
"gatsby-transformer-sharp": "2.1.17",
"gatsby-transformer-yaml": "2.1.10",
"prismjs": "1.15.0",
"react": "16.8.4",
"react-autosuggest": "9.4.3",
"react-dom": "16.8.4",
"react-helmet": "5.2.0",
"react-instantsearch-dom": "5.4.0",
"react-modal": "3.8.1",
"tocbot": "4.5.0"
}
}