forked from Cavallando/react-csv-reader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.41 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
{
"name": "react-csv-reader",
"version": "3.5.2",
"description": "React component that handles csv file input.",
"main": "dist/react-csv-reader.js",
"repository": "https://github.com/nzambello/react-csv-reader",
"bugs": "https://github.com/nzambello/react-csv-reader/issues",
"author": "Nicola Zambello (github.com/nzambello)",
"homepage": "https://github.com/nzambello/react-csv-reader#readme",
"license": "MIT",
"types": "./dist/index.d.ts",
"scripts": {
"build": "webpack --mode=development",
"prerelease": "webpack --define-process-env-node-env production",
"release": "release-it",
"test": "jest --rootDir src",
"watch": "webpack --watch --progress",
"docz:dev": "docz dev",
"docz:build": "docz build",
"docz:serve": "docz build && docz serve"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.10.3",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@release-it/conventional-changelog": "^2.0.0",
"@testing-library/react": "^10.0.1",
"@types/jest": "^25.1.4",
"@types/jest-axe": "^3.2.1",
"@types/papaparse": "^5.2.4",
"@types/react": "^16.9.23",
"@types/react-dom": "^16.9.5",
"@types/react-test-renderer": "^16.9.2",
"babel-jest": "^25.1.0",
"babel-loader": "^8.0.6",
"docz": "^2.3.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-config-react-app": "^5.2.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"husky": "^5.0.9",
"jest": "^25.1.0",
"jest-axe": "^3.4.0",
"prettier": "^1.19.1",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-test-renderer": "^16.13.0",
"release-it": "^14.3.0",
"source-map-loader": "^0.2.4",
"ts-loader": "^6.2.1",
"typescript": "^3.8.3",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"peerDependencies": {
"prop-types": "^15.7.2",
"react": "^16.0.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0"
},
"dependencies": {
"papaparse": "^5.3.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"volta": {
"node": "14.19.1",
"yarn": "1.22.18"
}
}