forked from carbon-design-system/carbon-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.95 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
{
"name": "carbondesignsystem",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "yarn timestamp && gatsby develop",
"dev:clean": "gatsby clean && yarn dev",
"clean": "gatsby clean",
"build": "yarn timestamp && node --max-old-space-size=8192 ./node_modules/.bin/gatsby build",
"build:clean": "gatsby clean && yarn build",
"lint:js": "eslint src --fix",
"format": "prettier --write 'src/**/*.{js,json,css,scss,md,mdx,yaml}'",
"timestamp": "./build-timestamp.sh"
},
"dependencies": {
"@carbon/elements": "^10.6.0",
"@carbon/icons": "^10.6.0",
"@carbon/icons-react": "^10.6.0",
"carbon-components": "^10.6.0",
"carbon-components-react": "^7.6.0",
"babel-eslint": "^10.0.3",
"change-case": "^3.1.0",
"classnames": "^2.2.6",
"docsearch.js": "^2.6.3",
"gatsby": "^2.13.73",
"gatsby-plugin-compile-es6-packages": "^2.1.0",
"gatsby-plugin-lodash": "^3.1.3",
"gatsby-theme-carbon": "^1.11.6",
"html-loader": "^0.5.5",
"lodash": "^4.17.15",
"markdown-it": "^9.0.1",
"markdown-loader": "^5.0.0",
"prismjs": "^1.17.1",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.8.6",
"react-ga": "^2.6.0"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-config-carbon": "^1.0.2",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-prettier": "^2.1.2",
"eslint-plugin-react": "^7.1.0",
"husky": ">=1",
"lint-staged": ">=8",
"prettier": "^1.18.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.{js,json,css,scss,md,mdx,yaml}": [
"prettier --write",
"git add"
]
}
}