-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.31 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.31 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
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
{
"name": "@arkhn/ui",
"version": "0.1.0",
"private": false,
"description": "Open source typescript library for ReactJs UI components",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"dependencies": {
"@date-io/core": "^1.3.6",
"@date-io/date-fns": "1.x",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@material-ui/pickers": "^3.2.10",
"date-fns": "^2.16.1",
"material-ui-popup-state": "^1.6.1",
"prop-types": "^15.6.0",
"react-beautiful-dnd": "^13.0.0",
"react-draggable": "^4.4.3",
"react-hook-form": "^6.15.1",
"react-modal": "^3.11.2",
"react-virtualized": "^9.22.1"
},
"scripts": {
"build": "tsc --project tsconfig.build.json",
"lint": "eslint ./src/**/*.ts",
"release": "semantic-release",
"test": "jest --max-workers 1 --watch",
"test:ci": "jest --max-workers 1 --coverage",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"release": {
"branch": "master",
"preset": "eslint",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github"
]
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"@storybook/addon-actions": "^6.0.5",
"@storybook/addon-controls": "^6.0.5",
"@storybook/addon-essentials": "^6.0.5",
"@storybook/addon-knobs": "^6.0.5",
"@storybook/addon-links": "^6.0.5",
"@storybook/node-logger": "^6.0.5",
"@storybook/preset-create-react-app": "^3.1.4",
"@storybook/react": "^6.0.5",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^12.8.0",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^26.0.9",
"@types/node": "^12.0.0",
"@types/react": "^16.9.0",
"@types/react-beautiful-dnd": "^13.0.0",
"@types/react-dom": "^16.9.0",
"@types/react-modal": "^3.10.6",
"@types/react-virtualized": "^9.21.10",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"babel-jest": "^26.3.0",
"babel-loader": "^8.1.0",
"conventional-changelog-eslint": "^3.0.4",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.3",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-jest-dom": "^3.6.5",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-testing-library": "^3.10.1",
"husky": "^4.2.3",
"jest": "^26.6.3",
"mutationobserver-shim": "^0.3.7",
"prettier": "^1.19.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-is": "^16.13.1",
"react-scripts": "^3.4.3",
"semantic-release": "^17.0.4",
"ts-jest": "^26.2.0",
"typescript": "^3.9.7",
"validate-commit": "^3.4.0"
},
"husky": {
"hooks": {
"commitmsg": "validate-commit-msg -p eslint"
}
}
}