forked from carbon-design-system/design-language-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.29 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
{
"name": "design-language-website",
"description": "IBM Design Language website",
"private": true,
"version": "0.0.0",
"main": "src",
"engines": {
"node": "^10 || ^12"
},
"repository": {
"url": "[email protected]:carbon-design-system/design-language-website.git",
"type": "git"
},
"author": "Alison Joseph <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"dev": "gatsby develop",
"dev:clean": "gatsby clean && gatsby develop",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"build": "gatsby build",
"build:prefix": "gatsby build --prefix-paths && yarn move-public",
"move-public": "mv public language && mkdir public && mkdir public/design && cp -R language public/design && rm -rf language",
"serve": "gatsby serve",
"ci-check": "yarn format:diff",
"format": "prettier --write \"**/*.{scss,css,js,md}\"",
"format:staged": "prettier --write",
"format:diff": "prettier --list-different \"**/*.{scss,css,js,md}\"",
"test:prefix": "gatsby build --prefix-paths && gatsby serve --prefix-paths"
},
"dependencies": {
"@carbon/elements": "^10.7.0",
"@carbon/icons": "^10.8.2",
"@carbon/icons-react": "^10.8.2",
"@carbon/pictograms": "^10.8.2",
"@carbon/pictograms-react": "^10.8.2",
"@ibm/plex": "^4.0.2",
"carbon-components": "^10.7.4",
"carbon-components-react": "^7.7.4",
"copy-to-clipboard": "^3.2.1",
"fs-extra": "^8.1.0",
"gatsby": "^2.19.17",
"gatsby-plugin-manifest": "^2.2.5",
"gatsby-theme-carbon": "^1.20.0",
"lodash-es": "^4.17.15",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-textarea-autosize": "^7.1.0",
"use-media": "^1.4.0"
},
"devDependencies": {
"babel-eslint": "^9.0.0",
"eslint": "^5.14.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-config-wesbos": "0.0.19",
"eslint-plugin-html": "^5.0.3",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.3.0",
"prettier": "^1.16.4"
},
"prettier": {
"jsxBracketSameLine": true,
"printWidth": 80,
"singleQuote": true,
"trailingComma": "es5"
}
}