-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 2.25 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
{
"name": "monday-ui-components",
"version": "0.0.0-development",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"build-docs": "build-storybook --docs",
"build-storybook": "build-storybook",
"start": "npm run storybook",
"storybook": "start-storybook -p 6006",
"lint": "yarn lint:prettier && yarn lint:eslint",
"lint:eslint": "eslint src/**/*.{ts,tsx,js,json} --fix",
"lint:prettier": "prettier --config .prettierrc --write src/**/*.{ts,tsx,js}",
"semantic-release": "semantic-release"
},
"engines": {
"node": ">=10",
"npm": ">=5"
},
"repository": "https://github.com/kaminskypavel/monday-ui-components",
"author": "Pavel 'PK' Kamisnky <kaminsky.pavel@gmail.com>",
"license": "MIT",
"devDependencies": {
"@storybook/addon-docs": "6.0.21",
"@storybook/addon-essentials": "6.0.21",
"@storybook/addon-links": "6.0.21",
"@storybook/addons": "6.0.21",
"@storybook/react": "6.0.21",
"@storybook/theming": "6.0.21",
"@types/jest": "26.0.12",
"@types/node": "14.6.2",
"@types/react": "16.9.49",
"@types/storybook__addon-knobs": "5.2.1",
"@types/storybook__react": "5.2.1",
"@typescript-eslint/eslint-plugin": "3.10.1",
"@typescript-eslint/parser": "3.10.1",
"eslint": "7.8.0",
"eslint-config-airbnb": "18.2.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jest": "23.20.0",
"eslint-plugin-json": "2.1.2",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-react": "7.20.6",
"eslint-plugin-react-hooks": "4.1.0",
"fork-ts-checker-webpack-plugin": "5.0.14",
"husky": "4.2.5",
"jest": "26.4.2",
"lint-staged": "10.2.11",
"prettier": "2.0.5",
"react-docgen-typescript-loader": "3.7.2",
"semantic-release": "17.1.1",
"ts-jest": "26.2.0",
"ts-loader": "8.0.3",
"typescript": "3.9.7"
},
"dependencies": {
"@types/styled-components": "^5.1.2",
"fontsource-roboto": "^3.0.3",
"react": "16.13.1",
"react-dom": "16.13.1",
"styled-components": "^5.1.1"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0",
"react-dom": "^15.0.0 || ^16.0.0"
}
}