-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
112 lines (112 loc) · 3.73 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
{
"name": "design-website",
"description": "IBM Design website",
"private": true,
"version": "0.0.0",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/ibm-design/design-website/"
},
"keywords": [
"gatsby"
],
"scripts": {
"dev": "yarn clean && yarn build:timestamp && gatsby develop",
"clean": "rimraf .cache public",
"build": "yarn clean && yarn build:timestamp && gatsby build --prefix-paths && mv public design && mkdir public && mv design public && mv public/design/404 public/404 && mv public/design/404.html public/404.html",
"build:timestamp": "./tasks/build-timestamp.sh",
"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"
},
"dependencies": {
"@carbon/addons-website": "^0.0.1-alpha.17",
"@carbon/colors": "0.0.1-alpha.31",
"@carbon/grid": "0.0.1-alpha.31",
"@carbon/icons-react": "0.0.1-alpha.31",
"@carbon/import-once": "0.0.1-alpha.31",
"@carbon/layout": "0.0.1-alpha.31",
"@carbon/type": "0.0.1-alpha.31",
"@reach/router": "^1.2.1",
"@storybook/addon-info": "^4.0.9",
"@vimeo/player": "^2.6.7",
"animate.css": "^3.7.0",
"carbon-components": "^9.73.3",
"carbon-components-react": "6.88.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-plugin-catch-links": "^2.0.10",
"gatsby-plugin-fathom": "^1.2.0",
"gatsby-plugin-manifest": "^2.0.17",
"gatsby-plugin-meta-redirect": "^1.1.1",
"gatsby-plugin-offline": "^2.0.18",
"gatsby-plugin-react-helmet": "3.0.3",
"gatsby-plugin-remove-serviceworker": "^1.0.0",
"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-embedded-codesandbox": "^1.2.0",
"gatsby-remark-images": "3.0.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": "^16.12.0",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.12.0",
"react-ga": "^2.5.5",
"react-helmet": "^5.2.0",
"react-reveal": "^1.2.2",
"react-router": "^4.3.1",
"react-scroll-up": "^1.3.3",
"rehype-react": "^3.1.0",
"use-media": "^1.4.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.3",
"rimraf": "^3.0.2",
"sass-loader": "^7.1.0",
"storybook-readme": "^3.3.0"
},
"eslintConfig": {
"globals": {
"__PATH_PREFIX__": true
}
},
"prettier": {
"jsxBracketSameLine": true,
"printWidth": 80,
"singleQuote": true,
"trailingComma": "es5"
}
}