This repository has been archived by the owner on Jul 30, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
executable file
·135 lines (135 loc) · 3.89 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
129
130
131
132
133
134
135
{
"name": "idr-website-gatsby",
"description": "IBM Design Research website",
"private": true,
"version": "0.0.0",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/IBM-Design/idr/"
},
"keywords": [
"gatsby"
],
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": []
},
"scripts": {
"build": "rm -rf public && gatsby build",
"serve": "gatsby serve",
"clean:cache": "rm -rf .cache",
"dev": "./tasks/build-timestamp.sh && 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"
},
"dependencies": {
"@carbon/addons-website": "^0.0.1-alpha.18",
"@carbon/colors": "10.2",
"@carbon/grid": "10.2.0",
"@carbon/icons-react": "10.2",
"@carbon/import-once": "10.2.0",
"@carbon/layout": "10.2.0",
"@carbon/type": "10.2.0",
"@mdx-js/mdx": "^0.16.6",
"@mdx-js/tag": "^0.16.6",
"@reach/router": "^1.2.1",
"carbon-components": "v10.0.0",
"carbon-components-react": "v7.0.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-cli": "^2.5.5",
"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-plugin-sitemap": "^2.0.10",
"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",
"smooth-scroll": "^16.0.3"
},
"devDependencies": {
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@mdx-js/loader": "^0.16.6",
"@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",
"lerna": "^3.6.0",
"loader-utils": "^1.1.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": {
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"env": {
"browser": true,
"node": true,
"es6": true
},
"globals": {
"__PATH_PREFIX__": true
}
},
"prettier": {
"jsxBracketSameLine": true,
"printWidth": 80,
"singleQuote": true,
"trailingComma": "es5"
}
}