-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (101 loc) · 2.68 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "pdf-viewer",
"version": "0.0.1",
"description": "pdf-Viewer",
"main": "./dist/main.bundle.js",
"scripts": {
"start": "electron ./dist/main.bundle.js",
"dev": "rimraf dist && cross-env NODE_ENV=development webpack --watch --progress --colors",
"prod": "rimraf dist && cross-env NODE_ENV=production webpack --progress --colors",
"test": "mocha -r ts-node/register -r tsconfig-paths/register \"test/**/*.ts\"",
"build:win": "electron-builder build --win --x64",
"build:mac": "electron-builder build --mac --x64",
"build:linux": "electron-builder build --linux"
},
"build": {
"appId": "com.your_company_name.pdf_viewer",
"productName": "PDF Viewer",
"directories": {
"app": "./dist/",
"output": "./out/"
},
"mac": {
"target": "pkg"
},
"win": {
"target": "nsis",
"asar": false
},
"linux":{
"target": [
"deb",
"rpm",
"AppImage"
]
},
"buildVersion": "1.0.0"
},
"author":{
"email": "[email protected]",
"name": "Admiral Avanesyan & Co"
},
"license": "MIT",
"dependencies": {
"@types/pdfjs-dist": "^2.1.3",
"@types/react": "^16.9.13",
"@types/react-dom": "^16.9.4",
"pdfjs-dist": "^2.2.228",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-dropzone": "^10.2.1"
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/react-router": "^4.4.5",
"@types/react-router-dom": "^4.3.5",
"acorn": "^6.4.0",
"ajv": "^6.10.2",
"copy-pkg-json-webpack-plugin": "0.0.38",
"cross-env": "^5.2.1",
"css-loader": "^1.0.1",
"electron": "^3.1.13",
"electron-builder": "^20.44.4",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-import-resolver-webpack": "^0.11.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.17.0",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"lodash": "^4.17.15",
"mocha": "^5.2.0",
"rimraf": "^2.7.1",
"source-map-loader": "^0.2.4",
"spectron": "^5.0.0",
"style-loader": "^0.23.1",
"ts-loader": "^5.4.5",
"ts-node": "^7.0.1",
"tsconfig-paths": "^3.9.0",
"tslint": "^5.20.1",
"tslint-microsoft-contrib": "^5.2.1",
"typescript": "^3.7.2",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/$USER$/$PROJECT$"
},
"keywords": [
"PDF",
"Electron",
"React",
"Typescript",
"Webpack"
],
"bugs": {
"url": "https://github.com/$USER$/$PROJECT$/issues"
},
"homepage": "https://github.com/$USER$/$PROJECT$#readme"
}