-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.08 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.08 KB
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": "example",
"private": true,
"version": "1.20.0",
"license": "Apache 2.0",
"scripts": {
"build": "gatsby build --prefix-paths",
"build:clean": "npm run clean && gatsby build",
"build:prefix": "gatsby build --prefix-paths",
"dev": "gatsby develop -H 0.0.0.0",
"dev:clean": "gatsby clean && gatsby develop -H 0.0.0.0",
"clean": "gatsby clean",
"deploy": "gh-pages -d public",
"predeploy": "npm run build",
"serve": "gatsby serve",
"format": "prettier --write \"**/*.{css,scss,json,html,yaml}\"",
"serve:prefix": "gatsby serve --prefix-paths",
"prepare": "husky install"
},
"dependencies": {
"@carbon/icons-react": "^11.17.0",
"@carbon/react": "^1.32.0",
"@reach/router": "^1.3.4",
"gatsby": "^4.25.7",
"gatsby-plugin-manifest": "^4.25.0",
"gatsby-theme-carbon": "^3.4.16",
"ibm-video-streaming-web-player-api": "^1.2.0",
"md5": "^2.2.1",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.0.0",
"smooth-scroll": "^16.1.3"
},
"devDependencies": {
"@commitlint/cli": "17.8.1",
"@commitlint/config-conventional": "^17.4.4",
"babel-eslint": "^10.1.0",
"classnames": "^2.3.2",
"eslint": "^8.45.0",
"eslint-config-airbnb": "^19.0.2",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.3.0",
"gatsby-cli": "^4.25.0",
"gh-pages": "^5.0.0",
"husky": "^8.0.3",
"lint-staged": "15.2.2",
"prettier": "^3.0.0",
"stylelint": "^15.2.0",
"stylelint-config-recommended-scss": "^12.0.0",
"stylelint-scss": "^5.0.1"
},
"eslintIgnore": [
"**/node_modules/",
"**/public/",
"**/.cache/",
"**/build/"
],
"lint-staged": {
"*.js": [
"eslint --fix"
],
"*.{css,scss,json,html,yaml}": [
"prettier --write"
],
"*.{css,scss}": [
"stylelint --fix"
]
}
}