forked from glideapps/glide-data-grid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 3.11 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
{
"name": "@glideapps/glide-data-grid",
"version": "2.2.5",
"description": "Super fast, pure canvas Data Grid Editor",
"main": "dist/js/index.js",
"types": "dist/ts/index.d.ts",
"scripts": {
"build": "npm run build-js && npm run build-types",
"build-js": "babel ./src -d dist/js --ignore '**/*.stories.tsx','src/stories/*.tsx' --extensions .ts,.tsx --config-file ./babel.config.json",
"build-types": "tsc -p tsconfig.types.json",
"lint": "eslint src --ext .ts,.tsx",
"storybook": "start-storybook -p 9009 -s public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/glideapps/glide-data-grid.git"
},
"keywords": [
"react",
"datagrid",
"data-grid",
"editor",
"reactjs",
"scrolling",
"data",
"table",
"cell",
"canvas"
],
"author": "Glide",
"license": "MIT",
"bugs": {
"url": "https://github.com/glideapps/glide-data-grid/issues"
},
"homepage": "https://github.com/glideapps/glide-data-grid#readme",
"dependencies": {
"collection-utils": "^1.0.1",
"copy-to-clipboard": "^3.1.0",
"react-number-format": "^4.4.1",
"react-virtualized-auto-sizer": "^1.0.2",
"utility-types": "^3.10.0"
},
"peerDependencies": {
"direction": "^1.0.4",
"lodash": "^4.17.19",
"marked": "^0.7.0",
"react-responsive-carousel": "^3.2.7",
"react": "^16.12.0 || 17.x",
"react-dom": "^16.12.0 || 17.x",
"styled-components": "^5.2.0"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^7.9.0",
"@storybook/addon-actions": "^6.3.2",
"@storybook/addon-controls": "^6.3.2",
"@storybook/addon-links": "^6.3.2",
"@storybook/addon-storysource": "^6.3.2",
"@storybook/addons": "^6.3.2",
"@storybook/react": "^6.3.2",
"@types/direction": "^1.0.0",
"@types/lodash": "^4.14.141",
"@types/marked": "^0.6.5",
"@types/react": "^16.9.19",
"@types/react-dom": "^16.9.5",
"@types/react-virtualized-auto-sizer": "^1.0.0",
"@types/styled-components": "5.1.4",
"@typescript-eslint/eslint-plugin": "^3.10.0",
"@typescript-eslint/parser": "^3.10.0",
"@typescript-eslint/typescript-estree": "^3.10.0",
"babel-loader": "^8.1.0",
"direction": "^1.0.4",
"eslint": "^7.12.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.1",
"lodash": "^4.17.21",
"marked": "^0.7.0",
"react": "^16.12.0 || 17.x",
"react-dom": "^16.12.0 || 17.x",
"react-responsive-carousel": "^3.2.7",
"react-virtualized": "^9.21.0",
"styled-components": "5.2.0",
"typescript": "^4.1.3"
}
}