forked from reach/reach-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.79 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
{
"name": "reach-ui",
"description": "The accessible foundation of your React apps and design systems",
"private": true,
"repository": "https://github.com/reach/reach-ui",
"author": "React Training <[email protected]>",
"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",
"ver": "lerna version --no-push",
"changes": "dotenv lerna-changelog",
"clean": "git clean -e '!/.env' -e '!/website-deploy-key' -e '!/website-deploy-key.pub' -fdX .",
"lint": "eslint .",
"doc": "react-docgen packages/*/src/* --out www/docs/source.json --resolver findAllComponentDefinitions --pretty"
},
"dependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.0",
"@storybook/addon-actions": "^5.2.6",
"@storybook/react": "^5.2.6",
"@reach/router": "^1.2.1",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.4",
"@types/styled-components": "^4.4.0",
"@typescript-eslint/eslint-plugin": "2.x",
"@typescript-eslint/parser": "2.x",
"awesome-typescript-loader": "^5.2.1",
"autoprefixer": "^9.7.1",
"babel-eslint": "10.x",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-plugin-dev-expression": "^0.2.2",
"dotenv-cli": "^3.0.0",
"eslint": "6.x",
"eslint-config-react-app": "^5.0.2",
"eslint-plugin-flowtype": "3.x",
"eslint-plugin-import": "2.x",
"eslint-plugin-jsx-a11y": "6.x",
"eslint-plugin-react": "7.x",
"eslint-plugin-react-hooks": "1.x",
"husky": "^3.0.9",
"jest": "^24.9.0",
"lerna": "^3.18.4",
"lerna-changelog": "^0.8.3",
"match-sorter": "^4.0.2",
"pepjs": "0.5.2",
"prettier": "^1.19.1",
"pretty-quick": "2.0.1",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-spring": "^8.0.27",
"react-test-renderer": "^16.12.0",
"styled-components": "^4.4.1",
"typescript": "^3.7.2",
"use-throttle": "^0.0.3"
},
"resolutions": {
"@types/react": "16.9.11",
"@types/react-dom": "16.9.4"
},
"workspaces": [
"packages/*"
],
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"changelog": {
"labels": {
"breaking-change": "🔨 Breaking Changes",
"bug": "🐛 Bugfixes",
"potential-bug": "🐛 Bugfixes",
"docs": "📝 Documentation",
"feature": "🚀 Features",
"enhancement": "✨ Enhancements",
"housekeeping": "🏡 Housekeeping"
}
}
}