-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2.38 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
{
"name": "carbon-for-ibm-dotcom-website",
"version": "1.0.0",
"license": "Apache-2.0",
"scripts": {
"clean": "gatsby clean",
"clean:dev-pages": "rimraf src/pages/developing/building-for-ibm-dotcom/index.mdx src/pages/developing/carbon-cdn-style-helpers/index.mdx",
"build": "gatsby build --prefix-paths",
"build:analyze": "ANALYZE=true yarn build",
"build:clean": "yarn clean && gatsby build --prefix-paths",
"build:wiki": "node node_modules/wiki-helpers/index.js rootPath=./wiki buildPath=./wiki-build flattenDir=true",
"dev": "gatsby develop -H 0.0.0.0",
"dev:clean": "yarn clean && yarn dev",
"format": "prettier --write 'src/**/*.{css,scss,js,json,html,yaml,md,mdx}'",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"postinstall": "husky install",
"postpublish": "pinst --enable",
"prepublishOnly": "pinst --disable",
"serve": "gatsby serve",
"test:e2e:local": "start-server-and-test 'yarn test:e2e:run' 8080 'cypress run --config video=false --config-file tests/e2e/cypress.json'",
"test:e2e:local:with-video": "start-server-and-test 'yarn test:e2e:run' 8080 'cypress run --config-file tests/e2e/cypress.json'",
"test:e2e:prod": "cypress run --config video=false --config-file tests/e2e/cypress-prod.json",
"test:e2e:run": "http-server -c-1 public --silent"
},
"dependencies": {
"@carbon/icons-react": "^10.27.0",
"beacon-for-ibm-dotcom": "^0.2.7",
"carbon-components": "^10.46.0",
"carbon-components-react": "^7.46.0",
"dotenv": "^10.0.0",
"gatsby": "^3.14.2",
"gatsby-theme-carbon": "2.3.2",
"node-fetch": "^2.6.7",
"prop-types": "^15.7.2",
"react": "16.8.6",
"react-dom": "16.8.6",
"wiki-helpers": "^1.2.4"
},
"devDependencies": {
"@actions/core": "1.2.6",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/plugin-transform-classes": "^7.12.13",
"babel-preset-gatsby": "^1.14.0",
"cypress": "^9.4.1",
"cypress-wait-until": "^1.7.2",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"http-server": "^14.1.0",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"start-server-and-test": "^1.14.0"
}
}