-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.82 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"version": "0.3.0",
"name": "drive-uploady",
"description": "wrapper for react-uploady to upload to google-drive",
"author": "yoav niran (https://github.com/yoavniran)",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"types": "types/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rpldy/drive-uploady.git"
},
"keywords": [
"upload",
"file upload",
"react",
"hooks",
"library",
"google",
"drive",
"google-drive",
"uploady"
],
"scripts": {
"clean": "rimraf lib",
"ensureTypes": "node scripts/ensureTypes.js",
"types": "yarn ensureTypes && tsc --outDir ./tstest",
"lint": "eslint ./src --cache",
"lint:nocache": "eslint ./src",
"jest": "NODE_ENV=test jest",
"jest:cov": "yarn jest --coverage",
"test": "yarn lint && yarn jest && yarn types",
"build": "yarn clean; node scripts/build.js",
"release:prep": "yarn test; yarn build",
"release": "np --no-cleanup --test-script=\"release:prep\"",
"storybook": "start-storybook -p 6006 --no-dll",
"build-storybook": "build-storybook --no-dll",
"start": "yarn storybook"
},
"peerDependencies": {
"@rpldy/uploady": ">=1.0.0",
"react": ">=16.8.x",
"react-dom": ">=16.8.x"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-proposal-export-default-from": "^7.12.1",
"@babel/plugin-proposal-function-bind": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"@babel/runtime-corejs3": "^7.12.5",
"@rpldy/sender": "latest",
"@rpldy/upload-button": "latest",
"@rpldy/uploady": "latest",
"@storybook/addon-actions": "^6.0.28",
"@storybook/addon-essentials": "^6.0.28",
"@storybook/addon-links": "^6.0.28",
"@storybook/react": "^6.0.28",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.1",
"chalk": "^4.1.0",
"core-js": "^3.7.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"eslint": "^8.26.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.3",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-no-async": "^1.0.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"fs-extra": "^9.0.1",
"jest": "^26.6.3",
"jest-environment-jsdom-global": "^2.0.4",
"jest-enzyme": "^7.1.2",
"np": "^7.0.0",
"react-is": "^17.0.1",
"shelljs": "^0.8.4",
"typescript": "^4.8.4"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}