forked from carbon-design-system/carbon-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.42 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
{
"name": "carbondesignsystem",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "gatsby develop -H 0.0.0.0",
"dev:clean": "gatsby clean && yarn dev",
"clean": "gatsby clean",
"build": "gatsby build",
"build:clean": "gatsby clean && yarn build",
"build:analyze": "ANALYZE=true yarn build",
"serve": "gatsby serve",
"lint:js": "eslint src --fix",
"format": "prettier --write 'src/**/*.{js,json,css,scss,md,mdx,yaml}'",
"update-browserslist": "npx browserslist-ga"
},
"engines": {
"node": "10.x || 12.x"
},
"browserslist": [
"> 0.5% in my stats"
],
"dependencies": {
"@carbon/charts": "^0.28.1",
"@carbon/charts-react": "^0.28.1",
"@carbon/elements": "^10.9.2",
"@carbon/icons": "^10.8.1",
"@carbon/icons-react": "^10.8.1",
"@carbon/pictograms": "^10.8.1",
"@carbon/pictograms-react": "^10.8.1",
"@philpl/buble": "^0.19.7",
"carbon-components": "^10.9.2",
"carbon-components-react": "^7.9.2",
"change-case": "^3.1.0",
"classnames": "^2.2.6",
"codesandbox": "^2.1.10",
"d3": "^5.12.0",
"gatsby": "^2.19.8",
"gatsby-plugin-fathom": "^1.1.1",
"gatsby-plugin-lodash": "^3.1.3",
"gatsby-plugin-remove-serviceworker": "^1.0.0",
"gatsby-theme-carbon": "^1.20.0",
"html-loader": "^0.5.5",
"lodash": "^4.17.15",
"markdown-it": "^9.0.1",
"markdown-loader": "^5.0.0",
"prismjs": "^1.17.1",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.8.6",
"react-ga": "^2.6.0",
"react-live": "^2.2.1",
"use-resize-observer": "^4.0.0"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-config-carbon": "^1.0.2",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-prettier": "^2.1.2",
"eslint-plugin-react": "^7.1.0",
"gatsby-plugin-webpack-bundle-analyser-v2": "^1.1.8",
"husky": ">=1",
"lint-staged": ">=8",
"prettier": "prettier/prettier"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.{js,json,css,scss,md,mdx,yaml}": [
"prettier --write",
"git add"
]
}
}