forked from carbon-design-system/carbon-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.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
{
"name": "carbondesignsystem",
"private": true,
"version": "2.0,0",
"license": "MIT",
"workspaces": {
"packages": [
"plugins/*"
]
},
"scripts": {
"dev": "NODE_OPTIONS='--max-old-space-size=8192' 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,js}'",
"format:check": "prettier --check 'src/**/*.{css,scss,json,html,yaml,md,mdx,js}'",
"update-browserslist": "npx browserslist-ga",
"prepare": "husky"
},
"engines": {
"node": ">=18.x"
},
"browserslist": [
"last 1 edge version",
"last 1 firefox version",
"last 1 safari version",
"last 1 chrome version"
],
"eslintIgnore": [
"/public/*",
"/.cache/*",
"/node_modules/*"
],
"dependencies": {
"@carbon/charts-react": "0.55.0",
"@carbon/icons-react": "^11.52.0",
"@carbon/pictograms": "^12.42.0",
"@carbon/pictograms-react": "^11.68.0",
"@loadable/babel-plugin": "^5.16.1",
"@loadable/component": "^5.16.4",
"codesandbox": "^2.2.3",
"d3": "^7.9.0",
"gatsby": "^5.13.5",
"gatsby-plugin-sharp": "^5.13.1",
"gatsby-theme-carbon": "^4.1.13",
"markdown-it": "^14.1.0",
"prettier-config-carbon": "^0.11.0",
"react": "^18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@loadable/babel-plugin": "^5.12.0",
"babel-preset-carbon": "^0.0.14",
"eslint": "^8.57.0",
"eslint-config-carbon": "3.15.0",
"gatsby-plugin-lodash": "^6.13.1",
"gatsby-plugin-sitemap": "^6.13.1",
"gatsby-source-filesystem": "^5.13.1",
"gatsby-transformer-sharp": "^5.13.1",
"html-loader": "^5.1.0",
"husky": "^9.0.11",
"lint-staged": ">=10.0.9",
"markdown-loader": "^8.0.0",
"prettier": "^2.0.2",
"typescript": "^4.8.4"
},
"lint-staged": {
"*.js": [
"eslint --fix"
],
"*.{css,scss,json,html,yaml,md,mdx}": [
"prettier --write"
]
},
"resolutions": {
"webpack": "^5.59.0"
},
"packageManager": "yarn@4.0.1"
}