-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.06 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
{
"version": "1.0.8",
"name": "use-s3-uploader",
"source": "src/index.ts",
"main": "./dist/use-s3-uploader.cjs",
"type": "module",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "/~https://github.com/wh5938316/use-s3-uploader.git"
},
"author": "WangHao",
"homepage": "/~https://github.com/wh5938316/use-s3-uploader",
"license": "MIT",
"keywords": [
"react",
"reactjs",
"aws",
"s3",
"hook",
"upload",
"uploader"
],
"scripts": {
"build:prod": "microbundle --define process.env.NODE_ENV=production --sourcemap false --tsconfig ./tsconfig.json",
"build:dev": "microbundle --define process.env.NODE_ENV=development --sourcemap true --tsconfig ./tsconfig.json",
"dev": "next"
},
"dependencies": {
"mime-types": "^2.1.32"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"axios": "^0.21.1",
"microbundle": "^0.13.3",
"next": "^11.1.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"typescript": "^4.4.2"
}
}