forked from carbon-design-system/gatsby-theme-carbon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2 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": "gatsby-theme-carbon-workspace",
"private": true,
"repository": {
"url": "git@github.com:carbon-design-system/gatsby-theme-carbon.git",
"type": "git"
},
"license": "Apache 2.0",
"engines": {
"node": "10.x || 12.x"
},
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "yarn workspace example develop",
"dev:clean": "yarn workspace example develop:clean",
"build": "yarn workspace example build",
"build:clean": "yarn workspace example build:clean",
"build:analyze": "ANALYZE=true yarn workspace example build",
"serve": "yarn build && yarn workspace example serve",
"test:prefix": "yarn workspace example test:prefix",
"now-build": "yarn workspace example build",
"format": "prettier --write \"**/*.{css,scss,json,html,yaml}\"",
"lint:js": "eslint . --fix",
"lint:scss": "stylelint \"packages/**/*.scss\" --fix",
"release": "lerna publish --conventional-commits --create-release github --git-remote upstream"
},
"eslintIgnore": [
"**/node_modules/",
"**/public/",
"**/.cache/",
"**/build/"
],
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-config-wesbos": "0.0.19",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.1",
"husky": "^4.2.3",
"lerna": "^3.16.2",
"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",
"yarn": "^1.22.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix"
],
"*.{css,scss,json,html,yaml}": [
"prettier --write"
],
"*.{css,scss}": [
"stylelint --fix"
]
}
}