-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.09 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
{
"name": "video-party-chrome-extension",
"version": "0.0.1",
"description": "",
"main": "index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"build": "webpack --config webpack/webpack.prod.js",
"watch": "webpack --config webpack/webpack.dev.js --watch",
"test": "npx jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tamim-khan/video-party-chrome.git"
},
"author": "tamim-khan",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/tamim-khan/video-party-chrome/issues"
},
"homepage": "https://github.com/tamim-khan/video-party-chrome#readme",
"devDependencies": {
"@types/chrome": "^0.0.123",
"@types/jest": "^26.0.13",
"@types/node": "^14.10.1",
"@types/socket.io-client": "^1.4.33",
"copy-webpack-plugin": "^6.1.0",
"jest": "^26.4.2",
"ts-jest": "^26.3.0",
"ts-loader": "^8.0.3",
"typescript": "^4.0.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-merge": "^5.1.4"
},
"dependencies": {
"socket.io-client": "^2.3.0",
"toastify-js": "^1.9.1"
}
}