-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·70 lines (70 loc) · 2.2 KB
/
package.json
File metadata and controls
executable file
·70 lines (70 loc) · 2.2 KB
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
{
"name": "dnm-react-uploader",
"version": "1.26.14",
"description": "React file uploader",
"main": "dist/dnm-react-uploader.umd.min.js",
"module": "dist/dnm-react-uploader.es.min.js",
"scripts": {
"dist:publish": "npm run dist && npm publish && npm run git",
"git": "git add . && git commit -m",
"postgit": "git push -u",
"dev": "parcel examples/index.html -d examples/dev --open --hmr-port=1235",
"build:dev": "rollup --config rollup/rollup.config.dev.js",
"build:prod": "rollup --config rollup/rollup.config.prod.js",
"watch": "npm run build:dev && onchange \"src/**/*.*\" -v -- npm run build:dev",
"dist": "rm -rf examples/dev && npm run build:dev && npm run build:prod",
"login:nint": "npm-login-noninteractive"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devdanim/dnm-react-uploader.git"
},
"keywords": [],
"author": "devdanim",
"contributors": [
"keywinf",
"fadrien"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/devdanim/dnm-react-uploader/issues"
},
"homepage": "https://github.com/devdanim/dnm-react-uploader#readme",
"peerDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.3",
"@babel/plugin-transform-runtime": "^7.19.1",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"@svgr/cli": "^2.1.1",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"npm-login-noninteractive": "^0.1.4",
"onchange": "^5.2.0",
"parcel-bundler": "^1.12.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^1.0.0",
"rollup-plugin-babel": "^4.2.0",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-terser": "^5.2.0"
},
"dependencies": {
"@emotion/core": "^10.0.22",
"@wavesurfer/react": "^1.0.4",
"browser-image-compression": "^2.0.0",
"deasync": "^0.1.20",
"fast-average-color": "^6.4.0",
"lodash-es": "^4.17.11",
"prop-types": "^15.7.2",
"validator": "^10.11.0",
"whatwg-fetch": "^3.0.0"
}
}