forked from justinmahar/github-projectv2-csv-exporter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 2.52 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
{
"name": "github-projectv2-csv-exporter",
"version": "1.0.17",
"author": "Justin Mahar <contact@justinmahar.com>",
"description": "Export GitHub project cards as CSV files. Uses the ProjectV2 API.",
"homepage": "https://justinmahar.github.io/github-projectv2-csv-exporter/",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rm -rf ./dist && tsc",
"watch": "tsc --watch",
"test": "echo Tests",
"lint": "eslint \"*/**/*.{js,jsx,ts,tsx}\" --quiet --fix",
"start": "npm run storybook",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"upgrade-storybook": "build-storybook",
"preship": "npm run build && git add dist && git diff-index --quiet HEAD || git commit -m \"Build, version, and publish.\" && npm version patch -m \"Build, version, and publish.\"",
"ship": "npm publish --access public",
"postship": "git push",
"update": "rm -rf .lockblocks && git clone -q git@github.com:justinmahar/react-kindling.git ./.lockblocks && lockblocks ./.lockblocks . --verbose && rm -rf .lockblocks && echo '' && echo ' → Be sure to run `npm i` to install new dependencies.' && echo ''"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/justinmahar/github-projectv2-csv-exporter.git"
},
"bugs": {
"url": "https://github.com/justinmahar/github-projectv2-csv-exporter/issues"
},
"keywords": [],
"peerDependencies": {
"react": ">=17",
"react-dom": ">=17"
},
"devDependencies": {
"@babel/core": "^7.17.2",
"@storybook/addon-actions": "^6.5.7",
"@storybook/addon-essentials": "^6.5.7",
"@storybook/addon-links": "^6.5.7",
"@storybook/builder-webpack5": "^6.5.7",
"@storybook/manager-webpack5": "^6.5.7",
"@storybook/react": "^6.5.7",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"babel-loader": "^8.2.3",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-storybook": "^0.5.12",
"html-webpack-plugin": "^5.5.0",
"lockblocks": "^1.0.9",
"prettier": "^2.5.1",
"react-html-props": "^1.0.32",
"react-markdown": "^8.0.0",
"typescript": "^4.5.5"
},
"dependencies": {
"@apollo/client": "^3.7.0",
"bootstrap": "^5.2.2",
"emoji-regex": "^10.2.1",
"graphql": "^16.6.0",
"json-2-csv": "3.18.0",
"react-bootstrap": "^2.5.0"
}
}