-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.7 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.7 KB
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
{
"name": "@thetribe/react-components",
"version": "0.3.12",
"description": "Library of generic React components",
"main": "dist/bundle.js",
"types": "dist/index.d.ts",
"typings": "./dist",
"repository": "git@github.com:thetribeio/react-components.git",
"author": "Simon Galet <simon.galet@thetribe.io>",
"license": "MIT",
"private": false,
"devDependencies": {
"@babel/core": "7.14.6",
"@rollup/plugin-commonjs": "19.0.0",
"@rollup/plugin-url": "6.0.0",
"@storybook/addon-a11y": "6.2.9",
"@storybook/addon-essentials": "6.2.9",
"@storybook/addon-links": "6.2.9",
"@storybook/react": "6.2.9",
"@thetribe/eslint-config-react": "0.4.2",
"@types/react": "17.0.11",
"@types/styled-components": "5.1.10",
"@typescript-eslint/eslint-plugin": "4.27.0",
"@typescript-eslint/parser": "4.27.0",
"babel-loader": "8.2.2",
"eslint": "7.28.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-react": "7.24.0",
"eslint-plugin-react-hooks": "4.2.0",
"prettier": "2.3.1",
"rollup": "2.51.2",
"rollup-plugin-typescript2": "0.31.0",
"tslib": "2.3.0",
"typescript": "4.2.2"
},
"dependencies": {
"react": "17.0.2",
"react-dom": "17.0.2",
"reakit": "1.3.8",
"styled-components": "5.3.0",
"styled-reset": "4.3.4"
},
"scripts": {
"watch": "rollup -cw",
"build": "rollup -c --silent",
"start": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"lint": "eslint './src/**/*.{ts,tsx,js,jsx}'",
"type-check": "tsc --noEmit",
"storybook": "start-storybook -p 6006"
}
}