-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
56 lines (56 loc) · 1.63 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
{
"name": "@code-based/react-dynamic-data-table",
"version": "0.0.0",
"description": "Re-usable data table for React with sortable columns, pagination and more.",
"keywords": [
"react",
"table",
"data table",
"pagination",
"bulk actions"
],
"main": "dist/index.js",
"scripts": {
"lint": "eslint \"src/**/*.js\" \"src/**/*.jsx\"",
"lint-fix": "eslint --fix \"src/**/*.js\" \"src/**/*.jsx\"",
"build": "node ./node_modules/@babel/cli/bin/babel src/ --out-dir dist/",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/langleyfoxall/react-dynamic-data-table.git"
},
"author": "Jordan Hall <[email protected]>",
"license": "LGPL-3.0-only",
"bugs": {
"url": "https://github.com/langleyfoxall/react-dynamic-data-table/issues"
},
"peerDependencies": {
"prop-types": "^15.6.2"
},
"homepage": "https://github.com/langleyfoxall/react-dynamic-data-table#readme",
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/preset-env": "^7.25.3",
"@babel/preset-react": "^7.24.7",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.5.0",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.2.0",
"eslint-plugin-react": "^7.34.3",
"globals": "^15.6.0"
},
"dependencies": {
"axios": "^1.7.2",
"babel": "^6.23.0",
"classnames": "^2.2.6",
"core-js": "^3.37.1",
"prop-types": "^15.6.2",
"react": "^18.3.1",
"react-dom": "^18.3.1"
}
}