forked from nadbm/react-datasheet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.42 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
{
"name": "react-datasheet",
"version": "1.4.9",
"description": "Excel-like data grid for React",
"repository": {
"type": "git",
"url": "https://github.com/nadbm/react-datasheet.git"
},
"author": "Nadim Islam",
"license": "MIT",
"bugs": {
"url": "https://github.com/nadbm/react-datasheet/issues"
},
"keywords": [
"react-component",
"react"
],
"scripts": {
"lint": "eslint ./src",
"lintfix": "eslint ./src --fix",
"clean": "rimraf dist",
"build": "babel ./src --out-dir ./lib && shx cp src/react-datasheet.css lib",
"build:watch": "watch 'npm run build' ./src",
"prepublish": "npm run build",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"format": "prettier --write '{src,test}/**/*.js' --ignore-path docs,.gitignore",
"format-test": "prettier-check '**/*.js'",
"test": "vitest",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"types": "tsc --noEmit --skipLibCheck"
},
"devDependencies": {
"@testing-library/jest-dom": "5.17.0",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.4.3",
"@types/react": "18.2.17",
"@types/react-dom": "18.2.7",
"@typescript-eslint/eslint-plugin": "6.2.1",
"@typescript-eslint/parser": "6.2.1",
"babel-cli": "6.6.4",
"babel-core": "6.26.3",
"babel-eslint": "6.0.2",
"babel-plugin-transform-es2015-modules-umd": "6.24.0",
"babel-polyfill": "6.7.4",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.23.0",
"babel-preset-stage-2": "6.5.0",
"cross-env": "4.0.0",
"eslint": "8.46.0",
"eslint-plugin-babel": "3.1.0",
"eslint-plugin-react": "4.2.3",
"husky": "4.2.5",
"jsdom": "22.1.0",
"nodemon": "1.17.5",
"prettier": "2.0.5",
"prettier-check": "2.0.0",
"prettier-quick": "0.0.5",
"pretty-quick": "2.0.1",
"prop-types": "15.7.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"rimraf": "2.6.1",
"shx": "0.3.3",
"typescript": "5.1.6",
"vitest": "0.33.0",
"watch": "1.0.2"
},
"peerDependencies": {
"prop-types": ">=15",
"react": ">=16",
"react-dom": ">=16"
},
"files": [
"lib",
"types"
],
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged --pattern '**/*.*(js|jsx)'"
}
},
"main": "lib/index.js",
"types": "types/react-datasheet.d.ts",
"packageManager": "[email protected]",
"type": "module"
}