This repository has been archived by the owner on Sep 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
127 lines (127 loc) · 3.82 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": "react-column-select",
"version": "1.5.0",
"description": "React component to select options by transferring them from one column to another.",
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -c -w",
"eslint": "eslint ./src/**/*.tsx && tsc --pretty --noEmit",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"lint": "prettier --check \"src/**/*.{ts,tsx}\"",
"lint:css": "stylelint ./src/**/*style.ts",
"storybook": "start-storybook -p 6006",
"storybook:ci": "start-storybook -p 6006 --ci",
"build-storybook": "build-storybook -o docs-build",
"test": "jest --env=jsdom",
"test:cov": "yarn jest --coverage",
"e2e": "cypress open",
"e2e:run": "cypress run --record --key 88c8ff33-bb42-424e-8194-a38330f5aeb7",
"e2e:test": "start-server-and-test storybook:ci http://localhost:6006 e2e:run"
},
"homepage": "https://react-column-select.chr-ge.com/",
"repository": {
"type": "git",
"url": "git+https://github.com/chr-ge/react-column-select.git"
},
"bugs": {
"url": "https://github.com/chr-ge/react-column-select/issues"
},
"author": "chr-ge <[email protected]> (https://chr-ge.com/)",
"license": "MIT",
"dependencies": {
"@emotion/core": "^11.0.0",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.8.1"
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@cypress/webpack-dev-server": "^1.8.4",
"@rollup/plugin-node-resolve": "^11.2.1",
"@storybook/addon-a11y": "^6.5.16",
"@storybook/addon-actions": "^6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-links": "^6.5.16",
"@storybook/react": "^6.5.16",
"@svgr/rollup": "^5.5.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^11.2.7",
"@types/jest-axe": "^3.5.5",
"@types/react": "^17.0.43",
"@types/react-dom": "^17.0.14",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"babel-loader": "^8.2.5",
"cypress": "^7.7.0",
"eslint": "^7.32.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-testing-library": "^4.12.4",
"husky": "^6.0.0",
"jest": "^26.6.3",
"jest-axe": "^4.1.0",
"lint-staged": "^10.5.4",
"prettier": "^2.8.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"rollup": "^2.79.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"start-server-and-test": "^1.15.4",
"storybook-addon-outline": "^1.4.2",
"stylelint": "^13.13.1",
"stylelint-config-recommended": "^4.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0",
"ts-jest": "^26.5.6",
"tslib": "^2.5.0",
"typescript": "^4.9.5"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"prettier --write",
"stylelint ./src/**/*style.ts",
"eslint ./src/**/*.tsx"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"files": [
"dist"
],
"main": "./dist/react-column-select.cjs.js",
"module": "./dist/react-column-select.es5.js",
"typings": "./dist/index.d.ts",
"keywords": [
"react",
"react-component",
"select",
"multiselect",
"react select",
"column select",
"react column select",
"ui",
"form",
"input",
"transfer"
]
}