forked from IBM/video-streaming-developer-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.12 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
{
"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",
"dev:clean": "gatsby clean && gatsby develop",
"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"
},
"dependencies": {
"@carbon/icons-react": "^10.13.0",
"gatsby": "^3.14.0",
"gatsby-plugin-manifest": "^3.14.0",
"gatsby-theme-carbon": "^2.1.4",
"ibm-video-streaming-web-player-api": "^1.2.0",
"md5": "^2.2.1",
"prop-types": "^15.7.2",
"react": "^16.13.1 || ^17.0.0",
"react-dom": "^16.13.1 || ^17.0.0",
"react-helmet": "^6.0.0",
"smooth-scroll": "^16.1.3"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"babel-eslint": "^10.1.0",
"eslint": "^7.2.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-config-wesbos": "2.1.0",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^4.2.0",
"gatsby-cli": "2.12.12",
"gh-pages": "^2.2.0",
"husky": "^4.2.3",
"lint-staged": "^10.0.9",
"prettier": "^2.0.2",
"stylelint": "^13.2.1",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-scss": "^3.16.0"
},
"eslintIgnore": [
"**/node_modules/",
"**/public/",
"**/.cache/",
"**/build/"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"eslint --fix"
],
"*.{css,scss,json,html,yaml}": [
"prettier --write"
],
"*.{css,scss}": [
"stylelint --fix"
]
}
}