This repository has been archived by the owner on Apr 24, 2019. It is now read-only.
forked from carbon-design-system/carbon-website-archive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·128 lines (128 loc) · 4.45 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "carbon-website-gatsby",
"description": "Carbon Design System website",
"private": true,
"version": "0.0.0",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/carbon-design-system/carbon-website-gatsby/"
},
"keywords": [
"gatsby"
],
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": []
},
"scripts": {
"build": "echo 'ERROR: Please specify environment by running either build:external or build:internal. This will set the correct environment variable for the build.'",
"build:packages": "lerna run build --stream --prefix --npm-client yarn",
"build:external": "rm -rf public && yarn build:packages && ./tasks/build.sh --env external",
"build:internal": "rm -rf public && yarn build:packages && ./tasks/build.sh --env internal",
"serve": "gatsby serve",
"clean": "lerna clean --yes && rm -rf build && rm -rf node_modules",
"clean:cache": "rm -rf .cache",
"dev": "yarn clean:cache && yarn dev:external",
"dev:external": "./tasks/build-timestamp.sh && cross-env GATSBY_CARBON_ENV=external gatsby develop",
"dev:internal": "./tasks/build-timestamp.sh && cross-env GATSBY_CARBON_ENV=internal gatsby develop",
"format": "prettier --write \"**/*.{scss,css,js,md}\"",
"format:diff": "prettier --list-different \"**/*.{scss,css,js,md}\"",
"test": "echo \"Error: no test specified\" && exit 1",
"storybook": "start-storybook -p 9001 -c .storybook",
"storybook:build": "build-storybook -c .storybook -o public/storybook"
},
"dependencies": {
"@carbon/addons-website": "^0.0.1-alpha.17",
"@mdx-js/mdx": "^0.16.6",
"@mdx-js/tag": "^0.16.6",
"@carbon/colors": "0.0.1-alpha.31",
"@carbon/grid": "0.0.1-alpha.32",
"@carbon/icons-react": "0.0.1-alpha.31",
"@carbon/import-once": "0.0.1-alpha.31",
"@carbon/layout": "0.0.1-alpha.32",
"@carbon/type": "0.0.1-alpha.32",
"@reach/router": "^1.2.1",
"carbon-components": "^9.75.0",
"carbon-components-react": "^6.93.0",
"carbon-icons": "^7.0.7",
"classnames": "^2.2.6",
"custom-event": "^1.0.1",
"dotenv": "^6.1.0",
"flatpickr": "^4.5.2",
"fs": "0.0.1-security",
"gatsby": "2.0.110",
"gatsby-image": "2.0.22",
"gatsby-mdx": "^0.3.0",
"gatsby-plugin-catch-links": "^2.0.9",
"gatsby-plugin-google-analytics": "^2.0.8",
"gatsby-plugin-manifest": "^2.0.17",
"gatsby-plugin-offline": "^2.0.18",
"gatsby-plugin-react-helmet": "3.0.3",
"gatsby-plugin-sass": "2.0.4",
"gatsby-plugin-sharp": "2.0.14",
"gatsby-react-router-scroll": "^2.0.2",
"gatsby-remark-autolink-headers": "^2.0.12",
"gatsby-remark-component": "^1.1.3",
"gatsby-remark-copy-linked-files": "2.0.7",
"gatsby-remark-embed-video": "^1.4.0",
"gatsby-remark-embedded-codesandbox": "^1.2.0",
"gatsby-remark-images": "3.0.1",
"gatsby-remark-relative-images": "0.2.1",
"gatsby-remark-responsive-iframe": "^2.0.8",
"gatsby-remark-smartypants": "^2.0.7",
"gatsby-remark-unwrap-images": "^1.0.1",
"gatsby-source-filesystem": "2.0.10",
"gatsby-transformer-remark": "2.1.14",
"gatsby-transformer-sharp": "2.1.8",
"markdown-it": "^8.4.2",
"markdown-loader": "^4.0.0",
"prismjs": "^1.15.0",
"prop-types": "^15.6.2",
"react-copy-to-clipboard": "^5.0.1",
"react-ga": "^2.5.5",
"react-helmet": "^5.2.0",
"react-router": "^4.3.1",
"react-scroll-up": "^1.3.3",
"rehype-react": "^3.1.0"
},
"devDependencies": {
"@mdx-js/loader": "^0.16.6",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@storybook/addon-actions": "^3.4.7",
"@storybook/addon-info": "^4.1.2",
"@storybook/addon-knobs": "^3.4.7",
"@storybook/addon-options": "^3.4.7",
"@storybook/react": "^3.4.7",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "7.1.1",
"cross-env": "^5.2.0",
"fs-extra": "^7.0.1",
"gatsby-remark-static-images": "^1.0.0",
"gh-pages": "^1.2.0",
"html-loader": "^0.5.5",
"loader-utils": "^1.1.0",
"lerna": "^3.6.0",
"node-sass": "^4.10.0",
"prettier": "^1.15.3",
"raw-loader": "^1.0.0",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"sass-loader": "^7.1.0",
"storybook-readme": "^3.3.0",
"string-replace-loader": "^2.1.0"
},
"eslintConfig": {
"globals": {
"__PATH_PREFIX__": true
}
},
"prettier": {
"jsxBracketSameLine": true,
"printWidth": 80,
"singleQuote": true,
"trailingComma": "es5"
}
}