-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.91 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
{
"name": "react-image-file",
"version": "0.3.0",
"description": "An image component that accepts blobs (as returned, from example, from couchdb) and file objects (such as the ones uploaded in the browser)",
"private": false,
"license": "MIT",
"main": "./dist/package.js",
"homepage": "https://xananax.github.io/react-image-file",
"keywords": [
"react",
"image",
"file",
"blob",
"upload"
],
"author": "xananax@yelostudio.com",
"repository": {
"type": "git",
"url": "git+https://github.com/Xananax/react-image-file.git"
},
"bugs": {
"url": "https://github.com/Xananax/react-image-file/issues"
},
"dependencies": {
"react": "^16.2.0"
},
"scripts": {
"start": "concurrently \"npm run start:demo\" \"npm run start:upload-server\"",
"start:demo": "react-scripts-ts start",
"start:upload-server": "node ./src/demo/server.js",
"build:pages": "react-scripts-ts build",
"build:doc": "typedoc --out ./build/doc --exclude \"**/demo/**.*\" --excludeExternals --theme default ./src",
"build": "npm run build:pages && npm run build:doc",
"test": "react-scripts-ts test --env=jsdom",
"clean:build": "rimraf ./build",
"clean:doc": "rimraf ./build/doc",
"clean:dist": "rimraf ./dist",
"clean": "npm run clean:build && npm run clean:dist",
"ts": "tsc --moduleResolution Node --module commonjs --target es5 --outDir dist",
"compile": "npm run clean:dist && npm run ts",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"prepublish": "npm run compile"
},
"devDependencies": {
"@types/jest": "^22.1.0",
"@types/node": "^9.3.0",
"@types/react": "^16.0.35",
"@types/react-dom": "^16.0.3",
"concurrently": "^3.5.1",
"express": "^4.16.2",
"gh-pages": "^1.1.0",
"multer": "^1.3.0",
"react-dom": "^16.2.0",
"react-scripts-ts": "2.13.0",
"rimraf": "^2.6.2",
"typescript": "^2.6.2"
}
}