forked from reach/reach-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.47 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
{
"private": true,
"name": "reach-ui",
"repository": "reach/reach-ui",
"scripts": {
"start": "start-storybook -p 9001 -c .storybook",
"test": "MODULE_FORMAT=cjs jest packages",
"build:changed": "lerna run build --parallel --since origin/master",
"build": "lerna run build --parallel",
"clean": "git clean -fdX .",
"precommit": "pretty-quick --staged",
"release": "lerna run test --since origin/master && yarn build:changed && lerna publish --since origin/master"
},
"dependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-actions": "^5.1.11",
"@storybook/react": "^5.1.11",
"autoprefixer": "^8.6.2",
"babel-eslint": "7.2.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-plugin-dev-expression": "^0.2.1",
"eslint": "4.10.0",
"eslint-config-react-app": "^2.1.0",
"eslint-plugin-flowtype": "2.39.1",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-jsx-a11y": "5.1.1",
"eslint-plugin-react": "7.4.0",
"husky": "^1.0.0-rc.13",
"jest": "^24.9.0",
"lerna": "^3.16.4",
"prettier": "^1.13.5",
"pretty-quick": "^1.6.0",
"prop-types": "^15.7.2",
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"husky": {
"hooks": {
"pre-push": "lerna run lint"
}
},
"workspaces": [
"packages/*"
]
}