-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.53 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
{
"name": "@crossroadscx/datatable",
"version": "0.0.46",
"repository": "[email protected]:crossroadscx/datatable.git",
"author": "Chris Birk <[email protected]>",
"license": "MIT",
"main": "dist/crossroadscx-datatable.cjs.js",
"module": "dist/crossroadscx-datatable.esm.js",
"types": "dist/crossroadscx-datatable.cjs.d.ts",
"keywords": [
"react",
"react-table",
"datatable",
"table",
"ui",
"component"
],
"files": [
"src",
"dist",
"types"
],
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.15.0",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@babel/runtime": "^7.15.3",
"@changesets/cli": "^2.16.0",
"@preconstruct/cli": "^2.1.1",
"@storybook/addon-actions": "^6.3.7",
"@storybook/addon-console": "^1.2.3",
"@storybook/addon-essentials": "^6.3.7",
"@storybook/addon-links": "^6.3.7",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/react": "^6.3.7",
"@types/faker": "^5.5.8",
"@types/lodash": "^4.14.172",
"@types/react": "^17.0.34",
"@types/react-select": "^4.0.17",
"@types/react-table": "^7.7.6",
"@types/styled-components": "^5.1.13",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"autoprefixer": "^10.3.1",
"babel-loader": "^8.2.2",
"babel-plugin-styled-components": "^1.13.2",
"chromatic": "^5.9.2",
"eslint": "^7.32.0",
"faker": "^5.5.3",
"postcss": "^8.3.6",
"storybook": "^6.3.7",
"tailwindcss": "^2.2.7",
"ttypescript": "^1.5.12",
"typescript": "^4.3.5"
},
"dependencies": {
"@heroicons/react": "^1.0.3",
"date-fns": "^2.23.0",
"lodash": "^4.17.21",
"prop-types": "^15.7.2",
"react-hotkeys-hook": "^3.4.4",
"react-infinite-scroll-component": "^6.1.0",
"react-is": "^17.0.2",
"react-select": "^4.3.1",
"react-table": "^7.7.0",
"styled-components": "^5.3.1"
},
"scripts": {
"build": "preconstruct build",
"eslint": "eslint ./src --ext .ts,tsx --fix",
"eslint:watch": "esw -w src --ext .ts,.tsx --fix --color",
"lint": "yarn eslint; yarn typecheck",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"build-publish": "yarn build && npm version patch && npm publish",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"react": "^17.0.0",
"react-dom": "^17.0.0"
},
"packageManager": "[email protected]"
}