This repository has been archived by the owner on Jul 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.49 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
79
80
81
82
83
84
{
"name": "@showbie/backpack-react",
"description": "React components for Showbie’s design system",
"license": "ISC",
"author": "Showbie (https://www.showbie.com)",
"maintainers": [
"Jeff Nelson @stormwarning (https://www.showbie.com)"
],
"homepage": "https://design.showbie.com",
"repository": "showbie/backpack-react",
"version": "0.0.2",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"build:storybook": "build-storybook --config-dir .storybook --output-dir docs/storybook",
"lint:scripts": "prettier-eslint '**/*.{js,jsx,ts,tsx}' --list-different",
"lint:styles": "stylelint '**/*.scss'",
"prepare": "babel src -d dist",
"storybook": "start-storybook -p 9001"
},
"dependencies": {
"classnames": "^2.2.6"
},
"peerDependencies": {
"react": "16.8.x"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.4",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@showbie/eslint-config": "^0.3.4",
"@showbie/stylelint-config": "^0.3.2",
"@storybook/addon-a11y": "^5.2.0-beta.21",
"@storybook/addon-actions": "^5.2.0-beta.21",
"@storybook/addon-docs": "^5.2.0-beta.21",
"@storybook/addon-info": "^5.2.0-beta.21",
"@storybook/addon-knobs": "^5.2.0-beta.21",
"@storybook/addon-storysource": "^5.2.0-beta.21",
"@storybook/addon-viewport": "^5.2.0-beta.21",
"@storybook/react": "^5.2.0-beta.21",
"@storybook/theming": "^5.2.0-beta.21",
"@types/classnames": "^2.2.9",
"@types/storybook__react": "^4.0.2",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"awesome-typescript-loader": "^5.2.1",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"css-loader": "^3.0.0",
"eslint-plugin-react": "^7.14.3",
"husky": "^3.0.0",
"lint-staged": "^9.2.0",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.12.0",
"prop-types": "^15.7.2",
"react-docgen-typescript-loader": "^3.1.1",
"react-dom": "^16.8.6",
"sass-loader": "^7.1.0",
"stylelint": "^10.1.0",
"typescript": "^3.5.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier-eslint --write",
"git add"
],
"*.scss": [
"stylelint --fix",
"git add"
]
},
"prettier": {
"arrowParens": "always",
"singleQuote": true,
"trailingComma": "es5"
}
}