forked from carbon-design-system/carbon-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 3.38 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
{
"name": "carbondesignsystem",
"private": true,
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"workspaces": {
"packages": [
"plugins/*"
],
"nohoist": []
},
"scripts": {
"dev": "gatsby develop -H 0.0.0.0",
"dev:clean": "gatsby clean && yarn dev",
"clean": "gatsby clean",
"build": "node --max-old-space-size=8192 ./node_modules/.bin/gatsby build",
"build:clean": "gatsby clean && yarn build",
"build:analyze": "yarn install --force && yarn clean && ANALYZE=true yarn build",
"serve": "gatsby serve",
"lint:js": "NODE_ENV=test eslint . --fix",
"format": "prettier --write 'src/**/*.{css,scss,json,html,yaml,md,mdx}'",
"format:check": "prettier --check 'src/**/*.{css,scss,json,html,yaml,md,mdx}'",
"update-browserslist": "npx browserslist-ga"
},
"engines": {
"node": "^18"
},
"browserslist": [
"last 1 edge version",
"last 1 firefox version",
"last 1 safari version",
"last 1 chrome version"
],
"eslintIgnore": [
"/public/*",
"/.cache/*",
"/node_modules/*"
],
"dependencies": {
"@babel/core": "^7.15.8",
"@carbon/charts-react": "0.55.0",
"@carbon/elements": "^11.24.0-rc.0",
"@carbon/icons-react": "^11.21.0-rc.0",
"@carbon/pictograms": "^12.18.0-rc.0",
"@carbon/pictograms-react": "^11.44.0-rc.0",
"@carbon/react": "^1.31.0-rc.0",
"@loadable/component": "^5.15.2",
"@slack/web-api": "^5.11.0",
"babel-preset-env": "^1.7.0",
"babel-preset-gatsby": "^2.9.0",
"change-case": "^4.1.1",
"classnames": "^2.2.6",
"codesandbox": "^2.1.10",
"copy-to-clipboard": "^3.2.1",
"fuse.js": "^6.4.1",
"gatsby": "^4.9.2",
"gatsby-image": "^3.7.1",
"gatsby-plugin-image": "^2.9.0",
"gatsby-theme-carbon": "^3.0.0-next.13",
"lodash-es": "^4.17.15",
"markdown-it": "^12.3.2",
"nanoid": "^2.1.11",
"prettier-config-carbon": "^0.4.0",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^17.0.2",
"react-live": "^3.1.0",
"use-media": "^1.4.0",
"webpack": "^5.76.0"
},
"devDependencies": {
"@loadable/babel-plugin": "^5.12.0",
"@loadable/webpack-plugin": "^5.15.2",
"@now/node": "^1.6.1",
"@philpl/buble": "^0.19.7",
"babel-eslint": "^10.1.0",
"babel-preset-carbon": "^0.0.14",
"core-js": "^3.18.3",
"d3": "7.0.0",
"dotenv": "^8.2.0",
"eslint": "^8.36.0",
"eslint-config-carbon": "^3.1.0",
"fs-extra": "^9.0.1",
"gatsby-plugin-lodash": "^5.9.0",
"gatsby-plugin-manifest": "^4.9.0",
"gatsby-plugin-meta-redirect": "^1.1.1",
"gatsby-plugin-remove-serviceworker": "^1.0.0",
"gatsby-plugin-sharp": "^4.25.1",
"gatsby-plugin-sitemap": "^5.9.0",
"gatsby-remark-images": "^6.9.0",
"gatsby-source-filesystem": "^4.9.0",
"gatsby-transformer-sharp": "^4.9.0",
"html-loader": "^3.1.0",
"husky": "^4.2.3",
"lint-staged": ">=10.0.9",
"markdown-loader": "^6.0.0",
"node-fetch": "^2.6.1",
"prettier": "^2.0.2",
"prismjs": "^1.17.1",
"use-resize-observer": "^4.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix"
],
"*.{css,scss,json,html,yaml,md,mdx}": [
"prettier --write"
]
},
"resolutions": {
"webpack": "^5.59.0",
"@carbon/react": "1.31.0-rc.0"
}
}