forked from nzambello/react-csv-reader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.14 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
{
"name": "react-csv-reader",
"version": "1.2.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",
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-env": "^1.5.0",
"babel-preset-react": "^6.24.1",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"webpack": "^2.5.1",
"husky": "^0.14.3",
"lint-staged": "^4.2.3",
"prettier": "1.7.4"
},
"peerDependencies": {
"prop-types": "*",
"react": "*",
"react-dom": "*"
},
"scripts": {
"build": "webpack -p",
"watch": "webpack --watch --progress",
"prettier-all": "prettier --write '**/*.{js,json,css}'",
"precommit": "lint-staged"
},
"dependencies": {
"papaparse": "^4.3.6"
},
"lint-staged": {
"*.{js,json,css}": [
"prettier --write",
"git add"
]
}
}