-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
113 lines (113 loc) · 3.33 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
{
"name": "ibmdotcom-web-components-test",
"version": "0.0.0",
"private": true,
"engines": {
"node": ">=18.x"
},
"scripts": {
"clean": "rimraf dist",
"build": "webpack --config ./config/webpack-prod.config.js",
"start": "webpack-dev-server --config ./config/webpack-dev.config.js --watch --color",
"lint": "eslint src",
"lint:styles": "stylelint '**/*.{css,scss}' --config ./packages/stylelint-config-carbon",
"test:e2e:local": "start-server-and-test 'http-server -c-1 dist --silent' 8080 'percy exec --config tests/e2e/.percy.json -- cypress run --config video=false --config-file tests/e2e/cypress.json'",
"test:e2e:local:no-percy": "start-server-and-test 'http-server -c-1 dist --silent' 8080 'cypress run --config video=false --config-file tests/e2e/cypress.json'",
"test:e2e:local:no-percy:with-video": "start-server-and-test 'http-server -c-1 dist --silent' 8080 'cypress run --config-file tests/e2e/cypress.json'",
"update-canary": "yarn up @carbon/ibmdotcom-web-components@canary",
"update-next": "yarn up @carbon/ibmdotcom-web-components@next",
"update-latest": "yarn up @carbon/ibmdotcom-web-components@latest",
"prepare": "husky install"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"devDependencies": {
"@actions/core": "^1.6.0",
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@commitlint/cli": "^16.0.0",
"@commitlint/config-conventional": "^16.0.0",
"@percy/cli": "^1.0.0-beta.70",
"@percy/cypress": "^3.1.1",
"@percy/dom": "^1.0.0-beta.70",
"autoprefixer": "^9.8.8",
"babel-loader": "^8.2.3",
"babel-preset-carbon": "^0.0.14",
"browser-sync": "^2.26.3",
"browser-sync-webpack-plugin": "^2.2.2",
"clean-webpack-plugin": "^0.1.19",
"commander": "^6.1.0",
"copy-webpack-plugin": "^4.5.4",
"css-loader": "^6.8.1",
"cypress": "^9.0.0",
"dotenv": "^14.0.0",
"eslint": "^8.54.0",
"eslint-config-carbon": "^3.10.0",
"fast-sass-loader": "^2.0.1",
"file-loader": "^6.0.0",
"handlebars": "4.7.8",
"handlebars-loader": "^1.7.0",
"html-webpack-plugin": "^4.5.1",
"http-server": "^14.0.0",
"husky": "^7.0.0",
"lint-staged": "^15.1.0",
"mini-css-extract-plugin": "^0.12.0",
"postcss-loader": "^3.0.0",
"prettier": "^2.1.2",
"process": "^0.11.10",
"rtlcss": "^2.6.0",
"sass": "^1.69.5",
"sass-loader": "^13.3.2",
"start-server-and-test": "^1.12.6",
"style-loader": "^3.0.0",
"terser-webpack-plugin": "^4.1.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"@carbon/ibmdotcom-web-components": "^2.16.2",
"@carbon/styles": "^1.55.0",
"@carbon/web-components": "^2.8.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"header-max-length": [
2,
"always",
72
],
"body-max-line-length": [
2,
"always",
80
],
"scope-case": [
0,
"always",
"lower-case"
]
}
},
"lint-staged": {
"**/*.js": [
"prettier --write",
"eslint src"
],
"*.md": [
"prettier --write"
]
},
"eslintConfig": {
"extends": [
"eslint-config-carbon"
]
},
"packageManager": "[email protected]"
}