forked from carbon-design-system/carbon-labs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.72 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
{
"name": "carbon-labs",
"version": "0.0.0",
"private": true,
"type": "module",
"description": "Carbon Labs",
"license": "Apache-2.0",
"repository": "https://github.com/carbon-design-system/carbon-labs",
"engines": {
"node": ">=18.x"
},
"workspaces": [
"packages/*",
"packages/*/**"
],
"scripts": {
"build": "lerna run build --stream",
"build:dist": "lerna run build:dist --stream",
"build:dist:canary": "lerna run build:dist:canary --stream",
"ci-check": "yarn run format:diff && yarn lint:license && yarn lint && yarn lint:styles",
"ci-check:build": "yarn build && yarn build:dist && yarn ci-check",
"clean": "rm -rf **/{node_modules,es,lib,dist}",
"doctoc": "doctoc --title '## Table of Contents' docs",
"format": "prettier --cache --write '**/*.{js,md,scss,ts,tsx}' '!**/*.snap.js' '!**/{build,es,lib,.storybook,ts,umd,storybook-static}/**'",
"format:diff": "prettier --list-different '**/*.{js,md,scss,ts,tsx}' '!**/*.snap.js' '!**/{build,es,lib,.storybook,ts,umd,storybook-static}/**'",
"lint": "eslint packages --ext .js,.ts",
"lint:license": "tools/check-license.cjs -a",
"lint:license:staged": "tools/check-license.cjs -w",
"lint:styles": "stylelint '**/*.{css,scss}' --report-needless-disables --report-invalid-scope-disables",
"prepare": "husky install",
"reset": "yarn cache clean && yarn clean && yarn install && yarn build"
},
"devDependencies": {
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@open-wc/testing": "^4.0.0",
"@playwright/test": "^1.39.0",
"@types/mocha": "^10.0.3",
"@types/react": "^18.2.36",
"@types/sinon": "^17.0.0",
"@web/test-runner": "^0.19.0",
"@web/test-runner-commands": "^0.9.0",
"@web/test-runner-playwright": "^0.11.0",
"babel-preset-carbon": "^0.0.14",
"browserslist-config-carbon": "^11.2.0",
"doctoc": "^2.2.1",
"eslint": "^8.57.0",
"eslint-config-carbon": "^3.11.0",
"globby": "^14.0.0",
"gulp": "^5.0.0",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-filter": "^9.0.0",
"gulp-header": "^2.0.9",
"gulp-postcss": "^10.0.0",
"gulp-prettier": "^6.0.0",
"gulp-sass": "^5.1.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-typescript": "6.0.0-alpha.1",
"husky": "^9.0.0",
"lerna": "^8.0.0",
"lint-staged": "^15.0.2",
"prettier": "^2.8.8",
"prettier-config-carbon": "^0.11.0",
"rollup": "^4.0.0",
"rollup-plugin-esbuild": "^6.1.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-postcss-lit": "^2.1.0",
"strip-comments": "^2.0.1",
"stylelint": "15.11.0",
"stylelint-config-carbon": "1.17.0",
"through2": "^4.0.2"
},
"packageManager": "[email protected]"
}