forked from carbon-design-system/carbon-website-archive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3.41 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
{
"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"
],
"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:external": "rm -rf public && ./tasks/build.sh --env external",
"build:internal": "rm -rf public && ./tasks/build.sh --env internal",
"dev": "yarn dev:external",
"dev:external": "rm -rf .cache && cross-env GATSBY_CARBON_ENV=external gatsby develop",
"dev:internal": "rm -rf .cache && 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/docs",
"deploy:internal": "yarn build:internal && cd public && surge",
"deploy:external": "yarn build:external && cd public && surge"
},
"dependencies": {
"@carbon/icons-react": "^0.0.1-alpha.12",
"@reach/router": "^1.2.1",
"@storybook/addon-info": "^4.0.9",
"carbon-components": "^9.58.2",
"carbon-components-react": "6.52.1",
"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.55",
"gatsby-image": "2.0.20",
"gatsby-plugin-google-analytics": "^2.0.7",
"gatsby-plugin-manifest": "^2.0.10",
"gatsby-plugin-offline": "^2.0.17",
"gatsby-plugin-react-helmet": "3.0.2",
"gatsby-plugin-sass": "2.0.4",
"gatsby-plugin-sharp": "2.0.13",
"gatsby-react-router-scroll": "^2.0.1",
"gatsby-remark-autolink-headers": "^2.0.11",
"gatsby-remark-component": "^1.1.3",
"gatsby-remark-copy-linked-files": "2.0.6",
"gatsby-remark-embed-video": "^1.4.0",
"gatsby-remark-embedded-codesandbox": "^1.2.0",
"gatsby-remark-images": "3.0.0",
"gatsby-source-filesystem": "2.0.9",
"gatsby-transformer-remark": "2.1.12",
"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",
"rehype-react": "^3.1.0"
},
"devDependencies": {
"@storybook/addon-actions": "^3.4.7",
"@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",
"node-sass": "^4.10.0",
"prettier": "^1.15.2",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"sass-loader": "^7.1.0",
"storybook-readme": "^3.3.0"
},
"eslintConfig": {
"globals": {
"__PATH_PREFIX__": true
}
},
"prettier": {
"jsxBracketSameLine": true,
"printWidth": 80,
"singleQuote": true,
"trailingComma": "es5"
}
}