-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
48 lines (48 loc) · 1.22 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
{
"name": "react-google-drive-picker",
"version": "1.2.2",
"description": "React google drive picker api",
"types": "./dist",
"main": "./dist/index.js",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"dev": "nodemon ./dist/index.js",
"lint": "eslint 'src/**/*.{js,ts,tsx}' --fix",
"format": "prettier --write ./src/*"
},
"author": "Jose-cd",
"repository": {
"type": "git",
"url": "https://github.com/Jose-cd/React-google-drive-picker.git"
},
"bugs": {
"url": "https://github.com/Jose-cd/React-google-drive-picker/issues"
},
"license": "MIT",
"keywords": [
"react",
"google",
"drive",
"picker"
],
"devDependencies": {
"@types/react": "^17.0.5",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"eslint": "^7.26.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.23.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.2.0",
"nodemon": "^2.0.7",
"prettier": "2.3.2",
"prettier-eslint": "^12.0.0",
"typescript": "^4.2.4"
},
"peerDependencies": {
"react": ">=17.0.0",
"react-dom": ">=17.0.0"
}
}