-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
29 lines (29 loc) · 842 Bytes
/
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
{
"name": "whatsapp-clone-javascript",
"version": "1.0.0",
"description": "A clone of WhatsApp Web using pure JavaScript - HCode course.",
"main": "index.js",
"scripts": {
"build": "webpack --config webpack.config.js",
"start": "webpack-dev-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gabriel-hahn/whatsapp-clone-javascript.git"
},
"keywords": [],
"author": "Gabriel Hahn Schaeffer <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gabriel-hahn/whatsapp-clone-javascript/issues"
},
"homepage": "https://github.com/gabriel-hahn/whatsapp-clone-javascript#readme",
"devDependencies": {
"webpack": "^3.1.0",
"webpack-dev-server": "^2.5.1"
},
"dependencies": {
"firebase": "^5.5.2",
"pdfjs-dist": "^2.0.489"
}
}