-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
108 lines (108 loc) · 3.26 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
{
"name": "carbon-for-ibm-dotcom-nextjs-test",
"private": true,
"version": "0.0.0",
"repository": "[email protected]:carbon-design-system/carbon-for-ibm-dotcom-nextjs-test.git",
"license": "Apache-2.0",
"engines": {
"node": "14 || 16"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"build": "next build",
"build-export": "next build && next export",
"dev": "next dev",
"export": "next export",
"lint": "eslint pages",
"start": "node server.js",
"test:e2e:local": "start-server-and-test 'yarn test:e2e:run' 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 'yarn test:e2e:run' 8080 'cypress run --config video=false --config-file tests/e2e/cypress.json'",
"test:e2e:local:no-percy:with-video": "start-server-and-test 'yarn test:e2e:run' 8080 'cypress run --config-file tests/e2e/cypress.json'",
"test:e2e:run": "http-server -c-1 out --silent",
"update-canary": "yarn up @carbon/ibmdotcom-react@canary && yarn up @carbon/ibmdotcom-styles@canary && yarn up @carbon/ibmdotcom-web-components@canary",
"update-latest": "yarn up @carbon/ibmdotcom-react@latest && yarn up @carbon/ibmdotcom-styles@latest && yarn up @carbon/ibmdotcom-web-components@latest",
"update-next": "yarn up @carbon/ibmdotcom-react@next && yarn up @carbon/ibmdotcom-styles@next && yarn up @carbon/ibmdotcom-web-components@next",
"prepare": "husky install"
},
"dependencies": {
"@carbon/ibmdotcom-react": "^1.44.0",
"@carbon/ibmdotcom-styles": "^1.44.0",
"@carbon/ibmdotcom-web-components": "^1.29.0",
"@carbon/icons-react": "^10.9.1",
"@carbon/pictograms-react": "11.21.0",
"carbon-components-react": "^7.44.1",
"next": "^12.3.4",
"next-compose-plugins": "^2.2.0"
},
"resolutions": {
"object-path": ">=0.11.5",
"serialize-javascript": ">= 3.1.0"
},
"devDependencies": {
"@actions/core": "^1.10.0",
"@babel/core": "7.21.0",
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@percy/cli": "^1.20.1",
"@percy/cypress": "^3.1.1",
"babel-preset-carbon": "0.0.14",
"commander": "^10.0.0",
"cypress": "^9.4.1",
"cypress-wait-until": "^1.7.2",
"dotenv": "^16.0.3",
"eslint": "^8.0.0",
"eslint-config-carbon": "3.0.0",
"express": "4.18.2",
"http-server": "14.1.0",
"husky": "^8.0.3",
"lint-staged": "^12.0.0",
"node-sass": "^4.13.0",
"prettier": "^2.8.4",
"prop-types": "^15.8.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"sass": "1.58.3",
"start-server-and-test": "^1.12.6"
},
"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 pages"
],
"*.md": [
"prettier --write"
]
},
"eslintConfig": {
"extends": [
"eslint-config-carbon"
]
},
"packageManager": "[email protected]"
}