-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 3.15 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
{
"name": "carbon-for-ibm-dotcom-nextjs-test",
"private": true,
"version": "0.0.0",
"repository": "git@github.com:carbon-design-system/carbon-for-ibm-dotcom-nextjs-test.git",
"license": "Apache-2.0",
"engines": {
"node": "12 || 14"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"build": "next build",
"build-export": "next build && next export",
"dev": "next dev",
"export": "next export",
"lint": "eslint pages",
"lint:styles": "stylelint '**/*.{css,scss}' --config ./packages/stylelint-config-ibmdotcom",
"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 upgrade @carbon/ibmdotcom-react@canary && yarn upgrade @carbon/ibmdotcom-styles@canary && yarn upgrade @carbon/ibmdotcom-web-components@canary",
"update-latest": "yarn upgrade @carbon/ibmdotcom-react@latest && yarn upgrade @carbon/ibmdotcom-styles@latest && yarn upgrade @carbon/ibmdotcom-web-components@latest",
"update-next": "yarn upgrade @carbon/ibmdotcom-react@next && yarn upgrade @carbon/ibmdotcom-styles@next && yarn upgrade @carbon/ibmdotcom-web-components@next",
"prepare": "husky install"
},
"dependencies": {
"@actions/core": "^1.2.6",
"@carbon/ibmdotcom-react": "^1.41.0",
"@carbon/ibmdotcom-styles": "^1.41.0",
"@carbon/ibmdotcom-web-components": "^1.26.0",
"@carbon/icons-react": "^10.9.1",
"@carbon/pictograms-react": "11.21.0",
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@zeit/next-sass": "^1.0.1",
"autoprefixer": "9.8.8",
"carbon-components-react": "^7.44.1",
"commander": "^6.2.0",
"dotenv": "^10.0.0",
"eslint": "^8.0.0",
"eslint-plugin-jsdoc": "^37.0.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^4.0.0",
"eslint-plugin-tree-shaking": "^1.8.0",
"express": "^4.17.1",
"fast-sass-loader": "^1.5.0",
"husky": "^7.0.0",
"lint-staged": "^12.0.0",
"next": "12.1.0",
"next-compose-plugins": "^2.2.0",
"node-sass": "^4.13.0",
"prettier": "^2.0.4",
"prop-types": "^15.7.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"rtlcss": "^2.6.0",
"sass-loader": "^10.2.0",
"stylelint": "^14.0.0",
"webpack": "^4.41.5"
},
"resolutions": {
"object-path": ">=0.11.5",
"serialize-javascript": ">= 3.1.0"
},
"devDependencies": {
"@percy/cli": "~1.1.0",
"@percy/cypress": "~3.1.1",
"cypress": "^9.4.1",
"cypress-wait-until": "^1.7.2",
"eslint-plugin-cypress": "^2.11.3",
"http-server": "14.1.0",
"husky": "^7.0.0",
"start-server-and-test": "^1.12.6"
}
}