forked from nick-keller/react-datasheet-grid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.08 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
{
"name": "react-datasheet-grid",
"version": "3.3.9",
"description": "An Excel-like React component to create beautiful spreadsheets.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm tsconfig.tsbuildinfo && rimraf ./dist && tsc && cpx \"src/**/*.css\" dist",
"start": "concurrently \"tsc --watch\" \"cpx \\\"src/**/*.css\\\" dist --watch\"",
"format": "prettier --write src/. && prettier --write example/src/.",
"lint": "eslint src/.",
"test": "jest",
"report-coverage": "coveralls < coverage/lcov.info"
},
"keywords": [
"react",
"reactjs",
"spreadsheet",
"grid",
"datasheet",
"excel",
"airtable",
"notion",
"table"
],
"author": "Nicolas Keller (https://github.com/nick-keller)",
"license": "MIT",
"repository": "Equify/react-datasheet-grid",
"homepage": "https://react-datasheet-grid.netlify.app/",
"devDependencies": {
"@testing-library/jest-dom": "^5.15.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^26.0.24",
"@types/jsdom": "^16.2.13",
"@types/react": "^17.0.11",
"@types/react-window": "^1.8.3",
"@types/throttle-debounce": "^2.1.0",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"concurrently": "^6.2.0",
"coveralls": "^3.1.1",
"cpx": "^1.5.0",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^27.0.6",
"jsdom": "^16.6.0",
"prettier": "^2.3.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.3",
"ts-node": "^10.4.0",
"typescript": "^4.3.3"
},
"files": [
"dist/**/*"
],
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0 || ^17.0.0"
},
"dependencies": {
"classnames": "^2.3.1",
"fast-deep-equal": "^3.1.3",
"html-entities": "^2.3.2",
"react-resize-detector": "^6.7.2",
"react-window": "^1.8.6",
"throttle-debounce": "^3.0.1"
}
}