-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.62 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
85
86
87
88
89
90
91
92
93
{
"name": "bricks",
"description": "A bunch of accessible (#a11y) React presentational components to help build your UI (brick by brick)",
"private": true,
"repository": "[email protected]:chris-pearce/bricks.git",
"author": "Chris Pearce <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/chris-pearce/bricks/issues"
},
"keywords": [
"components",
"design-systems",
"ui",
"ui-components",
"ui-kit",
"accessible-components",
"accessible-ui",
"accessibility"
],
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "start-storybook -p 9001 -c sandbox",
"deploy:sandbox": "storybook-to-ghpages -s public",
"bootstrap": "lerna bootstrap",
"postbootstrap": "yarn build",
"build": "lerna exec --scope '@bricks/*' --ignore '@bricks/consumer' --concurrency 1 -- yarn build",
"precommit": "lint-staged",
"lint": "eslint .",
"clean:lib": "rimraf packages/*/lib/**"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": ""
}
},
"lint-staged": {
"*.{js,md,css,html}": [
"prettier --write",
"git add"
],
"*.js": [
"eslint --fix",
"git add"
]
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-a11y": "^5.0.1",
"@storybook/react": "^5.0.1",
"@storybook/storybook-deployer": "^2.8.1",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-plugin-module-resolver": "^3.2.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"backpack.css": "^2.0.0",
"chalk": "^2.4.2",
"copyfiles": "^2.1.0",
"eslint": "^5.15.2",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-babel": "^5.3.0",
"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",
"fs-extra": "^7.0.1",
"husky": "^1.3.1",
"lerna": "^3.13.1",
"lint-staged": "^8.1.5",
"lodash": "^4.17.11",
"prettier": "^1.16.4",
"prop-types": "^15.7.2",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"rimraf": "^2.6.3",
"rollup": "^1.6.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-uglify": "^6.0.2"
},
"dependencies": {}
}