-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.74 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
{
"name": "gatsby-lona-docs-theme",
"version": "0.1.0",
"description": "A Gatsby theme used for the Lona documentation websites.",
"main": "index.js",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"develop:gatsby": "GATSBY_PATH_PREFIX=__lona-docs__/secret/prefix GATSBY_WORKSPACE_PATH=../TestWorkspace gatsby develop",
"build:example": "GATSBY_BASE_URL=base-url GATSBY_PATH_PREFIX=__lona-docs__/secret/prefix GATSBY_WORKSPACE_PATH=../TestWorkspace gatsby build --prefix-paths",
"develop:ts": "tsc --watch",
"develop": "tsc && concurrently \"npm:develop:gatsby\" \"npm:develop:ts\"",
"start": "npm run develop"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lona/lona-docs-github-action.git"
},
"keywords": [
"actions",
"node",
"lona",
"gatsby"
],
"author": "Mathieu Dutour",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.3",
"@lona/compiler": "^0.1.10",
"@mdx-js/mdx": "^1.5.8",
"@mdx-js/react": "^1.5.8",
"chokidar": "^3.3.1",
"fs-extra": "^9.0.0",
"gatsby": "^2.20.15",
"gatsby-cli": "^2.11.5",
"gatsby-core-utils": "^1.1.1",
"gatsby-plugin-mdx": "^1.1.6",
"gatsby-plugin-react-helmet": "^3.2.1",
"gatsby-plugin-styled-components": "^3.2.1",
"gatsby-plugin-typescript": "^2.3.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^6.0.0",
"rfc822-date": "0.0.3",
"styled-components": "^5.1.0"
},
"devDependencies": {
"@types/fs-extra": "^8.1.0",
"@types/mdx-js__react": "^1.5.1",
"@types/node": "^12.12.35",
"@types/react-helmet": "^5.0.15",
"@types/styled-components": "^5.0.1",
"concurrently": "^5.1.0",
"typescript": "^3.8.3"
}
}