forked from component-driven/ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.57 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
{
"private": true,
"name": "@component-driven/ui",
"workspaces": [
"packages/*"
],
"preconstruct": {
"packages": [
"packages/*"
]
},
"scripts": {
"postinstall": "preconstruct dev",
"build": "preconstruct build",
"prerelease": "npm run build",
"release": "changeset publish",
"start": "styleguidist server",
"styleguide": "styleguidist server",
"styleguide:build": "styleguidist build",
"test": "echo \"Error: no test specified\" && exit 0",
"lint": "eslint ."
},
"author": "Andrey Okonetchnikov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/component-driven/react-focus-utils/issues"
},
"homepage": "https://react-focus-utils.netlify.com",
"dependencies": {
"react": "^16.13.0",
"react-dom": "^16.13.0",
"styled-components": "^5.0.1"
},
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"@babel/preset-react": "^7.8.3",
"@changesets/cli": "^2.6.5",
"@preconstruct/cli": "^1.1.12",
"@webpack-blocks/babel": "^2.0.1",
"@webpack-blocks/webpack": "^2.0.1",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.19.0",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"prettier": "^1.14.2",
"react-styleguidist": "^11.0.0",
"webpack": "^4.16.5"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,json,md}": "prettier --write"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}