forked from kodiak-packages/ventura
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 2.87 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
{
"name": "ventura",
"version": "0.0.0-development",
"repository": "[email protected]:kodiak-packages/ventura.git",
"author": "Kodiak",
"license": "MIT",
"private": false,
"files": [
"dist",
"README.md"
],
"main": "dist/index.js",
"scripts": {
"start": "rm -rf .docz && docz dev",
"build": "rm -rf dist && tsc --project tsconfig-build.json && yarn copy:assets",
"test": "jest --detectOpenHandles --watchAll",
"document": "docz build",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
"lint:fix": "yarn lint --fix",
"release": "semantic-release",
"copy:assets": "cpx './src/**/!(docAssets)/*.{css,svg}' 'dist' && cpx './src/*.{css,svg}' 'dist'"
},
"peerDependencies": {
"react": "^16",
"react-dom": "^16"
},
"devDependencies": {
"@semantic-release/git": "^9.0.0",
"@testing-library/dom": "^7.26.3",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^10.4.8",
"@testing-library/user-event": "^12.1.6",
"@types/classnames": "^2.2.10",
"@types/jest": "^26.0.15",
"@types/react": "^17.0.3",
"@types/react-dom": "^16.9.8",
"@types/react-outside-click-handler": "^1.3.0",
"@types/react-portal": "^4.0.2",
"@types/react-select": "^4.0.17",
"@types/react-transition-group": "^4.4.0",
"@typescript-eslint/eslint-plugin": "^3.9",
"cpx": "1.5.0",
"docz": "^2.3.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^9.0.0",
"eslint-config-prettier": "^6.9.0",
"eslint-config-react-app": "^5.2.1",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-ban": "1.5.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^2.3.0",
"eslint-plugin-simple-import-sort": "^5.0.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.4.2",
"jest-svg-transformer": "^1.0.0",
"prettier": "^2.0.4",
"react": "^16",
"react-dom": "^16",
"semantic-release": "^17.4.1",
"ts-jest": "^26.4.4",
"typescript": "^3.9.7"
},
"dependencies": {
"@popperjs/core": "^2.4.4",
"classnames": "^2.2.6",
"react-compound-slider": "^3.3.1",
"react-feather": "^2.0.8",
"react-outside-click-handler": "^1.3.0",
"react-popper": "^2.2.3",
"react-portal": "^4.2.1",
"react-select": "^4.3.1",
"react-transition-group": "^4.4.1"
},
"keywords": [
"kodiak",
"ventura",
"react",
"ui",
"component",
"library"
],
"release": {
"branches": [
"master"
]
},
"jest": {
"preset": "ts-jest",
"roots": [
"<rootDir>/src"
],
"collectCoverageFrom": [
"src/**/*.{ts,tsx}",
"!src/**/*.d.ts"
],
"moduleNameMapper": {
"^.+\\.css$": "identity-obj-proxy",
"^.+\\.svg$": "jest-svg-transformer"
}
}
}