-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
43 lines (43 loc) · 1.24 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
{
"name": "react-pdf-pages",
"version": "0.1.8",
"description": "Adaptable react component to render PDFs",
"main": "lib/index.js",
"repository": {
"url": "[email protected]:gkaemmer/react-pdf-pages.git",
"type": "git"
},
"scripts": {
"build": "npm run build:clean && npm run build:lib",
"build:clean": "rm -rf lib",
"build:lib": "babel src --out-dir lib",
"prepublish": "NODE_ENV=production npm run build",
"start": "EXAMPLE=true webpack-dev-server --port 3124 --hot --inline --content-base example/public"
},
"author": "Graham Kaemmer",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.20.0",
"babel-loader": "^6.2.9",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"express": "^4.14.0",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.24.1",
"pdfjs-dist": "^1.6.380",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"styled-components": "^1.1.3",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2"
},
"peerDependencies": {
"pdfjs-dist": "^1.6.380",
"prop-types": "^15.5.10",
"react": "^15.4.1",
"react-dom": "^15.4.1"
}
}