-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
127 lines (127 loc) · 3.4 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "@groovehq/design-system",
"version": "2.7.0",
"description": "Groove Storybook Design System",
"repository": {
"type": "git",
"url": "https://github.com/groovehq/design-system.git"
},
"license": "UNLICENSED",
"author": {
"name": "Tair Assimov",
"email": "tair@groovehq.com"
},
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "build-storybook",
"build-pkg": "babel src -d dist",
"deploy": "yarn run build && bundle exec s3_website push",
"lint": "eslint .",
"lint:js": "cross-env NODE_ENV=production eslint --cache --cache-location=.cache/eslint --ext .js,.jsx,.html,.ts,.tsx,.mjs --report-unused-disable-directives .",
"lint:package": "sort-package-json",
"prepare": "install-peers",
"release": "yarn run build-pkg && ./scripts/release.sh",
"start": "start-storybook -p 9009"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint-staged"
}
},
"lint-staged": {
"*.html": [
"yarn lint:js --fix",
"git add"
],
"*.js": [
"yarn lint:js --fix",
"git add"
],
"package.json": [
"yarn lint:package",
"git add"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@emotion/core": "^10.0.22",
"@emotion/is-prop-valid": "^0.8.8",
"@emotion/styled": "^10.0.23",
"color": "^3.1.2",
"framer-motion": "^3.1.1",
"mitt": "^2.1.0",
"polished": "^3.4.2",
"prop-types": "^15.7.2",
"react-autosize-textarea": "^7.0.0",
"react-relative-portal": "^1.8.0",
"react-scripts": "3.2.0"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/node": "^7.7.0",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.0",
"@storybook/addon-actions": "^5.3.17",
"@storybook/addon-docs": "^5.3.17",
"@storybook/addon-knobs": "^5.3.17",
"@storybook/addon-links": "^5.3.17",
"@storybook/addon-storysource": "^5.3.17",
"@storybook/addons": "^5.3.17",
"@storybook/react": "^5.3.17",
"@storybook/source-loader": "^5.3.17",
"auto": "^7.16.3",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-emotion": "^10.0.23",
"babel-plugin-require-context-hook": "^1.0.0",
"cross-env": "^6.0.3",
"eslint": "^6.6.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.7.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-json": "^2.0.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.3.0",
"husky": "^3.1.0",
"install-peers-cli": "^2.2.0",
"lint-staged": "^9.4.3",
"prettier": "^1.19.1",
"prettier-eslint": "^9.0.1",
"sort-package-json": "^1.23.1"
},
"peerDependencies": {
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"auto": {
"plugins": [
"npm",
"released"
]
}
}