-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
122 lines (122 loc) · 4 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
{
"name": "carbon-devtools-v10",
"version": "2.8.3",
"private": true,
"description": "A basic set of tools for teams building live Carbon pages for Carbon v10.",
"main": "dist/manifest.json",
"scripts": {
"build": "webpack --config webpack.prod.js",
"watch": "webpack --watch --config webpack.dev.js",
"start": "webpack-dev-server --open --config webpack.dev.js",
"clean": "rimraf dist && rimraf node_modules",
"format": "prettier --write '*.{js,json,md,scss,ts}' '**/*.{js,json,md,scss,ts}' '!**/{dist,build,es,lib,storybook,ts,umd}/**' '!**/*.{jpg,jpeg,gif,png}'",
"format:diff": "prettier --list-different '*.{js,json,md,scss,ts}' '**/*.{js,json,md,scss,ts}' '!**/{dist,build,es,lib,storybook,ts,umd}/**' '!**/*.{jpg,jpeg,gif,png}'",
"lint": "yarn lint:js && yarn lint:css",
"lint:js": "eslint src/",
"lint:css": "stylelint 'src/**/*.{css,scss}' --report-needless-disables --report-invalid-scope-disables",
"test": "yarn format && yarn lint",
"launch:chrome": "web-ext run -t chromium --start-url \"https://www.ibm.com\" --source-dir ./dist/",
"launch:firefox": "web-ext run --start-url \"https://www.ibm.com\" --source-dir ./dist/",
"launch:firefox:dev": "web-ext run --start-url \"about:debugging#/runtime/this-firefox\" --source-dir ./dist/"
},
"dependencies": {
"@carbon/colors": "^10.30.0",
"@carbon/devtools-component-list": "^2.7.7",
"@carbon/grid": "^10.33.0",
"@carbon/ibm-products": "^1.2.4",
"@carbon/ibm-security": "^1.31.0",
"@carbon/ibmdotcom-react": "^1.27.0",
"@carbon/ibmdotcom-utilities": "^1.27.0",
"@carbon/icons": "^10.37.0",
"@carbon/layout": "^10.29.0",
"@carbon/motion": "^10.22.0",
"@carbon/themes": "^10.40.0",
"@carbon/type": "^10.33.0",
"carbon-components": "^10.41.0",
"carbon-components-react": "^7.41.0",
"color": "^4.2.3",
"node-fetch": "^3.3.2",
"url": "^0.11.4"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/preset-react": "^7.24.7",
"@carbon/icons-react": "^11.46.0",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"cssnano": "^7.0.5",
"dotenv-webpack": "^8.1.0",
"eslint": "^9.9.0",
"eslint-config-carbon": "^3.14.0",
"html-loader": "^5.1.0",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.9.0",
"optimize-css-assets-webpack-plugin": "^6.0.1",
"postcss": "^8.4.41",
"postcss-import": "^16.1.0",
"postcss-loader": "^8.1.1",
"postcss-preset-env": "^10.0.0",
"postcss-rem-to-pixel": "^4.1.2",
"preact": "^10.23.2",
"prettier": "^2.8.8",
"prettier-config-carbon": "^0.11.0",
"prop-types": "^15.8.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-svg-loader": "^3.0.3",
"rimraf": "^6.0.1",
"sass": "1.77.8",
"sass-loader": "^16.0.0",
"style-loader": "^4.0.0",
"stylelint": "^15.0.0",
"stylelint-config-carbon": "^1.17.0",
"terser-webpack-plugin": "^5.3.10",
"web-ext": "^8.2.0",
"webpack": "^5.93.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"webpack-merge": "^6.0.1",
"zip-webpack-plugin": "^4.0.1"
},
"sideEffects": false,
"keywords": [
"IBM",
"Dotcom",
"IBM.com",
"Carbon",
"Tools",
"Development"
],
"author": "IBM",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/carbon-design-system/devtools"
},
"bugs": {
"url": "https://github.com/carbon-design-system/devtools/issues/new",
"email": "[email protected]"
},
"homepage": "https://github.com/carbon-design-system/devtools#readme",
"eslintConfig": {
"extends": [
"carbon"
],
"globals": {
"chrome": "readonly"
}
},
"stylelint": {
"extends": [
"stylelint-config-carbon"
],
"rules": {
"max-nesting-depth": 3,
"csstools/use-logical": null
}
}
}