-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 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
71
{
"name": "@pickk/react-excel",
"version": "0.0.9",
"keywords": [
"react",
"reactjs",
"excel",
"excel-export",
"excel-download",
"typescript",
"xlsx",
"csv"
],
"description": "Well-typed React Component for Downloading Excel File",
"main": "dist/index.js",
"scripts": {
"format": "prettier --write **/*.{ts,tsx} --ignore-path ./.prettierignore",
"lint": "eslint \"src/**/*.{ts,tsx}\" --fix",
"test": "jest",
"test:coverage": "jest --coverage",
"build": "rimraf -rf dist && tsc -p tsconfig.json",
"prepublish:npm": "npm run format && npm run lint && npm run test && npm run build",
"publish:npm": "npm publish --access public",
"build:storybook": "build-storybook",
"storybook": "start-storybook -p 6006"
},
"devDependencies": {
"@babel/core": "7.16.0",
"@storybook/addon-actions": "6.4.0",
"@storybook/addon-essentials": "6.4.0",
"@storybook/addon-links": "6.4.0",
"@storybook/react": "6.4.0",
"@testing-library/jest-dom": "5.15.1",
"@testing-library/react": "12.1.2",
"@types/faker": "5.5.9",
"@types/jest": "27.0.3",
"@types/xlsx": "0.0.36",
"@typescript-eslint/eslint-plugin": "5.4.0",
"@typescript-eslint/parser": "5.4.0",
"babel-loader": "8.2.3",
"dayjs": "1.10.7",
"eslint": "8.3.0",
"eslint-config-prettier": "8.3.0",
"faker": "5.5.3",
"jest": "27.3.1",
"prettier": "2.5.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"rimraf": "3.0.2",
"ts-jest": "27.0.7",
"ts-node": "10.4.0",
"typescript": "4.5.2"
},
"peerDependencies": {
"react": ">=16.14.0",
"xlsx": ">=0.17.0"
},
"author": "syoung125 <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/DEV-MUGLES/react-excel-download.git"
},
"bugs": {
"url": "https://github.com/DEV-MUGLES/react-excel-download/issues"
},
"homepage": "https://github.com/DEV-MUGLES/react-excel-download#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}