-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.55 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.55 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
{
"name": "semantic-ui-docs-gatsby",
"private": true,
"description": "Documentation for the Semantic UI component library.",
"version": "0.2.0",
"author": "Ryosuke <[email protected]>",
"dependencies": {
"@mdx-js/mdx": "^1.1.1",
"@mdx-js/react": "^1.1.1",
"babel-plugin-styled-components": "^1.11.1",
"file-loader": "^6.1.0",
"gatsby": "^2.13.42",
"gatsby-image": "^2.2.7",
"gatsby-plugin-less": "^2.1.2",
"gatsby-plugin-manifest": "^2.2.4",
"gatsby-plugin-mdx": "^1.0.18",
"gatsby-plugin-offline": "^2.2.4",
"gatsby-plugin-react-helmet": "^3.1.2",
"gatsby-plugin-sass": "^2.1.3",
"gatsby-plugin-sharp": "^2.2.9",
"gatsby-source-filesystem": "^2.1.6",
"gatsby-transformer-sharp": "^2.2.5",
"gh-pages": "^3.1.0",
"global": "^4.4.0",
"less": "^3.9.0",
"node-sass": "^4.12.0",
"prism-react-renderer": "^0.1.7",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.1",
"react-live": "^2.2.0",
"react-mailchimp-subscribe": "^2.1.0",
"react-syntax-highlighter": "^11.0.2",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.87.3",
"sharp": "^0.25.4",
"styled-components": "^5.1.1"
},
"devDependencies": {
"html-loader": "^0.5.5",
"nodemon": "^1.19.4",
"prettier": "^1.18.2"
},
"keywords": [
"react",
"gatsby",
"mdx",
"semantic-ui",
"semantic-ui-react",
"documentation"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"clean": "rm -rf .cache && npm run develop",
"develop": "nodemon --exec \"gatsby develop\"",
"deploy": "gatsby build --prefix-paths && gh-pages -b origin/build -d public",
"debug": "nodemon --exec \"node --inspect-brk --no-lazy node_modules/.bin/gatsby develop\"",
"format": "prettier --write 'src/**/*.js'",
"lint": "eslint . --ext ts --ext tsx",
"storybook": "start-storybook",
"storybook:build": "build-storybook -c .storybook -o .out",
"test": "echo \"Error: no test specified\" && exit 1",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch"
},
"nodemonConfig": {
"ignore": [
".cache/*",
"public/*",
"schema.json",
"src/*",
"content/*",
"static/*"
],
"delay": "1500"
},
"repository": {
"type": "git",
"url": "https://github.com/whoisryosuke/semantic-ui-docs-gatsby"
},
"bugs": {
"url": "https://github.com/whoisryosuke/semantic-ui-docs-gatsby/issues"
}
}