-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 876 Bytes
/
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
{
"name": "react-drive",
"author": {
"name": "Alex Gurr"
},
"version": "1.0.0",
"main": "dist/index.js",
"dependencies": {
"file-saver": "^2.0.2",
"prop-types": "^15.7.2",
"react-load-script": "^0.0.6"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-react": "^7.9.4",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^2.5.1",
"react": "^16.13.1"
},
"peerDependencies": {
"react": "^16.13.1"
},
"scripts": {
"build": "babel src --out-dir dist",
"prepublishOnly": "yarn build",
"lint": "eslint src --cache"
}
}