-
Notifications
You must be signed in to change notification settings - Fork 175
/
Copy pathpackage.json
70 lines (70 loc) · 2.04 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
{
"name": "react-datasheet-grid",
"version": "4.11.5",
"description": "An Excel-like React component to create beautiful spreadsheets.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -f 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"
},
"keywords": [
"react",
"reactjs",
"spreadsheet",
"grid",
"datasheet",
"excel",
"airtable",
"notion",
"table"
],
"author": "Nicolas Keller (https://github.com/nick-keller)",
"license": "MIT",
"repository": "nick-keller/react-datasheet-grid",
"homepage": "https://react-datasheet-grid.netlify.app/",
"devDependencies": {
"@jest/types": "^27.4.2",
"@testing-library/jest-dom": "^5.15.1",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.0",
"@types/jsdom": "^16.2.13",
"@types/react": "^18.0.8",
"@types/throttle-debounce": "^2.1.0",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"concurrently": "^6.2.0",
"cpx": "^1.5.0",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"jest": "^27.4.7",
"jsdom": "^16.6.0",
"prettier": "^2.3.1",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"resize-observer-polyfill": "^1.5.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"files": [
"dist/**/*"
],
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0"
},
"dependencies": {
"@tanstack/react-virtual": "^3.0.0-beta.18",
"classnames": "^2.3.1",
"fast-deep-equal": "^3.1.3",
"react-resize-detector": "^7.1.2",
"throttle-debounce": "^3.0.1"
}
}